Samchon Framework for CPP  1.0.0
main.cpp
1 #include <samchon/example/interaction/TSPSlave.hpp>
2 
3 using namespace samchon::example::interaction;
4 
5 #ifdef _WIN64
6 # ifdef _DEBUG
7 # pragma comment(lib, "x64/Debug/SamchonFramework.lib")
8 # else
9 # pragma comment(lib, "x64/Release/SamchonFramework.lib")
10 # endif
11 #else
12 # ifdef _DEBUG
13 # pragma comment(lib, "Debug/SamchonFramework.lib")
14 # else
15 # pragma comment(lib, "Release/SamchonFramework.lib")
16 # endif
17 #endif
18 
19 void main()
20 {
22 }
An example of complicate network system.
static void main()
Main function.
Definition: TSPSlave.hpp:72