1
This commit is contained in:
parent
c5e5a8b615
commit
997a1de9b8
17
server/wsproxy/iomgr.cc
Normal file
17
server/wsproxy/iomgr.cc
Normal 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
18
server/wsproxy/iomgr.h
Normal 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
|
Loading…
x
Reference in New Issue
Block a user