diff options
author | lns <matzeton@googlemail.com> | 2021-05-06 13:40:23 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2021-05-06 13:40:23 +0200 |
commit | a1dbf3f04bde8f98c11f43722e90b20dc832e78c (patch) | |
tree | 82698dc88f2770bf99841ae4db7a14ffb8a42842 /src/ContentManager.hpp | |
parent | c0483779dac4d8fd5fcc736ae5ffa8ddede0e511 (diff) |
Blog, Content, ContentManager skeleton!
Diffstat (limited to 'src/ContentManager.hpp')
-rw-r--r-- | src/ContentManager.hpp | 7 |
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 |