https://gitlab.kitware.com/cmake/community/-/wikis/doc/cpack/Packaging-With-CPack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
نگاهی به تجربیات دولوپری که ۳۰ سال کد زده است ! | |
https://sokanacademy.com/blog/2062/%D9%86%DA%AF%D8%A7%D9%87%DB%8C-%D8%A8%D9%87-%D8%AA%D8%AC%D8%B1%D8%A8%DB%8C%D8%A7%D8%AA-%D8%AF%D9%88%D9%84%D9%88%D9%BE%D8%B1%DB%8C-%DA%A9%D9%87-%DB%B3%DB%B0-%D8%B3%D8%A7%D9%84-%DA%A9%D8%AF-%D8%B2%D8%AF%D9%87-%D8%A7%D8%B3%D8%AA | |
پس شما میخواهید برنامهنویس تابعگرا (فانکشنال) شوید؟ : | |
1. http://vrgl.ir/Vzswh (قسمت اول) | |
2. http://vrgl.ir/uYmRk (قسمت دوم) | |
3. http://vrgl.ir/hA8H9 (قسمت سوم) | |
4. http://vrgl.ir/rVAhS (قسمت چهارم) | |
5. http://vrgl.ir/V1wKw (قسمت پنجم) | |
6. http://vrgl.ir/6FpXS (قسمت ششم) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Language: Cpp | |
AccessModifierOffset: -4 | |
AlignAfterOpenBracket: Align | |
AlignConsecutiveAssignments: false | |
AlignConsecutiveDeclarations: false | |
AlignEscapedNewlines: DontAlign | |
AlignOperands: true | |
AlignTrailingComments: true | |
AllowAllParametersOfDeclarationOnNextLine: false | |
AllowShortBlocksOnASingleLine: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 2.8.12) | |
project(UCCP_Server_Boost) | |
set(CMAKE_INCLUDE_CURRENT_DIR ON) | |
set(CMAKE_AUTOMOC ON) | |
include_directories(./src) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <algorithm> | |
#include <chrono> | |
#include <cmath> | |
#include <iostream> | |
#include <thread> | |
#include <time.h> | |
#include <vector> | |
// lets create a population | |
struct Member { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <memory> | |
#include <string> | |
using namespace std; | |
class actor { | |
public: | |
actor(); | |
virtual ~actor(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <algorithm> | |
#include <iostream> | |
#include <list> | |
#include <memory> | |
#include <string> | |
using namespace std; | |
class DiagnosticInterface { | |
public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <memory> | |
#include <queue> | |
#include <string> | |
using namespace std; | |
// Product | |
class Meal { | |
public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <memory> | |
using namespace std; | |
// Transfer library | |
class Usb { | |
public: | |
bool isAvailable(); | |
void connect(); |