diff --git a/server/wsproxy/handshakemgr.cc b/server/wsproxy/handshakemgr.cc new file mode 100644 index 0000000..921f6c5 --- /dev/null +++ b/server/wsproxy/handshakemgr.cc @@ -0,0 +1,11 @@ +#include "precompile.h" + +void HandshakeMgr::Init() +{ + +} + +void HandshakeMgr::UnInit() +{ + +} diff --git a/server/wsproxy/handshakemgr.h b/server/wsproxy/handshakemgr.h new file mode 100644 index 0000000..0810e40 --- /dev/null +++ b/server/wsproxy/handshakemgr.h @@ -0,0 +1,16 @@ +#pragma once + +#include + +class HandshakeMgr : public a8::Singleton +{ + private: + HandshakeMgr() {}; + friend class a8::Singleton; + + public: + + void Init(); + void UnInit(); + +};