diff --git a/server/wsproxy/iomgr.cc b/server/wsproxy/iomgr.cc new file mode 100644 index 0000000..0276de4 --- /dev/null +++ b/server/wsproxy/iomgr.cc @@ -0,0 +1,17 @@ +#include "precompile.h" + +#include "iomgr.h" + +#ifdef USE_ASIO + +void IoMgr::Init() +{ + +} + +void IoMgr::UnInit() +{ + +} + +#endif diff --git a/server/wsproxy/iomgr.h b/server/wsproxy/iomgr.h new file mode 100644 index 0000000..2bf963b --- /dev/null +++ b/server/wsproxy/iomgr.h @@ -0,0 +1,18 @@ +#pragma once + +#ifdef USE_ASIO + +class IoMgr : public a8::Singleton +{ +private: + IoMgr() {}; + friend class a8::Singleton; + +public: + + void Init(); + void UnInit(); + +}; + +#endif