This commit is contained in:
azw 2023-05-07 11:43:02 +00:00
parent a1ffc20c85
commit b4e68c8d0a
2 changed files with 29 additions and 0 deletions

13
server/wsproxy/mmcache.cc Normal file
View File

@ -0,0 +1,13 @@
#include "precompile.h"
#include "mmcache.h"
void MMCache::Init()
{
}
void MMCache::UnInit()
{
}

16
server/wsproxy/mmcache.h Normal file
View File

@ -0,0 +1,16 @@
#pragma once
#include <a8/singleton.h>
class MMCache : public a8::Singleton<MMCache>
{
private:
MMCache() {};
friend class a8::Singleton<MMCache>;
public:
void Init();
void UnInit();
};