sockscape/server/src/main.cpp

11 lines
199 B
C++
Raw Normal View History

2018-02-14 01:16:58 +00:00
#include <iostream>
2018-02-15 23:09:09 +00:00
#include "sock/tcpsock.hpp"
2018-02-14 01:16:58 +00:00
int main(int argc, char **argv) {
2018-02-16 22:34:22 +00:00
//auto sock = sosc::TcpClient();
std::cout << "compiled on windows" << std::endl;
2018-02-15 23:09:09 +00:00
2018-02-14 01:16:58 +00:00
return 0;
}