1
This commit is contained in:
parent
50f66d54be
commit
9a4b98738e
11
server/wsproxy/handshakemgr.cc
Normal file
11
server/wsproxy/handshakemgr.cc
Normal file
@ -0,0 +1,11 @@
|
||||
#include "precompile.h"
|
||||
|
||||
void HandshakeMgr::Init()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void HandshakeMgr::UnInit()
|
||||
{
|
||||
|
||||
}
|
16
server/wsproxy/handshakemgr.h
Normal file
16
server/wsproxy/handshakemgr.h
Normal file
@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include <a8/singleton.h>
|
||||
|
||||
class HandshakeMgr : public a8::Singleton<HandshakeMgr>
|
||||
{
|
||||
private:
|
||||
HandshakeMgr() {};
|
||||
friend class a8::Singleton<HandshakeMgr>;
|
||||
|
||||
public:
|
||||
|
||||
void Init();
|
||||
void UnInit();
|
||||
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user