This commit is contained in:
azw 2023-05-06 15:32:12 +00:00
parent c5e5a8b615
commit 997a1de9b8
2 changed files with 35 additions and 0 deletions

17
server/wsproxy/iomgr.cc Normal file
View File

@ -0,0 +1,17 @@
#include "precompile.h"
#include "iomgr.h"
#ifdef USE_ASIO
void IoMgr::Init()
{
}
void IoMgr::UnInit()
{
}
#endif

18
server/wsproxy/iomgr.h Normal file
View File

@ -0,0 +1,18 @@
#pragma once
#ifdef USE_ASIO
class IoMgr : public a8::Singleton<IoMgr>
{
private:
IoMgr() {};
friend class a8::Singleton<IoMgr>;
public:
void Init();
void UnInit();
};
#endif