diff --git a/server/wsproxy/mmcache.cc b/server/wsproxy/mmcache.cc new file mode 100644 index 0000000..272c2f1 --- /dev/null +++ b/server/wsproxy/mmcache.cc @@ -0,0 +1,13 @@ +#include "precompile.h" + +#include "mmcache.h" + +void MMCache::Init() +{ + +} + +void MMCache::UnInit() +{ + +} diff --git a/server/wsproxy/mmcache.h b/server/wsproxy/mmcache.h new file mode 100644 index 0000000..52bbcb4 --- /dev/null +++ b/server/wsproxy/mmcache.h @@ -0,0 +1,16 @@ +#pragma once + +#include + +class MMCache : public a8::Singleton +{ +private: + MMCache() {}; + friend class a8::Singleton; + +public: + + void Init(); + void UnInit(); + +};