From b4e68c8d0adbfcc05385093812233672fd57a9ea Mon Sep 17 00:00:00 2001 From: azw Date: Sun, 7 May 2023 11:43:02 +0000 Subject: [PATCH] 1 --- server/wsproxy/mmcache.cc | 13 +++++++++++++ server/wsproxy/mmcache.h | 16 ++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 server/wsproxy/mmcache.cc create mode 100644 server/wsproxy/mmcache.h 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(); + +};