This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
nettrans/net_server/main.cpp
2024-07-16 23:58:17 +08:00

20 lines
202 B
C++

#include "net_server.h"
#include <iostream>
class CDemoLogger
{
};
int main()
{
CNetServer server;
server.run();
std::cout << "Done" << std::endl;
std::cin.get();
return 0;
}