From a1dbf3f04bde8f98c11f43722e90b20dc832e78c Mon Sep 17 00:00:00 2001 From: lns Date: Thu, 6 May 2021 13:40:23 +0200 Subject: Blog, Content, ContentManager skeleton! --- src/ContentManager.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/ContentManager.hpp') 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 + class ContentManager { public: ContentManager() {} ~ContentManager() {} - bool Register(Content ctnt); + bool Register(Content const & ctnt); + +private: + std::map m_ContentModules; }; #endif -- cgit v1.2.3