1
This commit is contained in:
parent
a1ffc20c85
commit
b4e68c8d0a
13
server/wsproxy/mmcache.cc
Normal file
13
server/wsproxy/mmcache.cc
Normal file
@ -0,0 +1,13 @@
|
||||
#include "precompile.h"
|
||||
|
||||
#include "mmcache.h"
|
||||
|
||||
void MMCache::Init()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void MMCache::UnInit()
|
||||
{
|
||||
|
||||
}
|
16
server/wsproxy/mmcache.h
Normal file
16
server/wsproxy/mmcache.h
Normal 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();
|
||||
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user