| 55 | } |
| 56 | |
| 57 | std::string GetFile() { |
| 58 | std::ifstream t("logo.png"); |
| 59 | std::string str((std::istreambuf_iterator<char>(t)), |
| 60 | std::istreambuf_iterator<char>()); |
| 61 | return std::move(str); |
| 62 | } |
| 63 | |
| 64 | void DisConnectionFunc(const cppnet::Handle& , uint32_t ) { |
| 65 | std::cout << "[DisConnectionFunc]" << std::endl; |