aboutsummaryrefslogtreecommitdiff
path: root/src/ContentManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ContentManager.hpp')
-rw-r--r--src/ContentManager.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ContentManager.hpp b/src/ContentManager.hpp
index 8a7972a..75b9173 100644
--- a/src/ContentManager.hpp
+++ b/src/ContentManager.hpp
@@ -3,12 +3,17 @@
#include "Content.hpp"
+#include <map>
+
class ContentManager {
public:
ContentManager() {}
~ContentManager() {}
- bool Register(Content ctnt);
+ bool Register(Content const & ctnt);
+
+private:
+ std::map<std::string, Content const &> m_ContentModules;
};
#endif