Beginning to create the placeholder classes

This commit is contained in:
Kayne Ruse
2013-08-29 19:57:25 +10:00
parent d5f7363c33
commit b675f516e7
13 changed files with 135 additions and 50 deletions
+23
View File
@@ -0,0 +1,23 @@
#ifndef CLIENTMANAGER_HPP_
#define CLIENTMANAGER_HPP_
#include <list>
class ClientManager {
private:
ClientManager() = default;
~ClientManager() = default;
static ClientManager instance;
public:
static ClientManager* GetInstance() { return &instance; }
private:
struct ClientEntry {
int index;
};
std::list<ClientEntry> list;
};
#endif