aboutsummaryrefslogtreecommitdiff
path: root/resource-manager/resource.h
diff options
context:
space:
mode:
Diffstat (limited to 'resource-manager/resource.h')
-rw-r--r--resource-manager/resource.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/resource-manager/resource.h b/resource-manager/resource.h
new file mode 100644
index 0000000..4f112e3
--- /dev/null
+++ b/resource-manager/resource.h
@@ -0,0 +1,18 @@
+#pragma once
+
+
+
+
+#include <string>
+class Resource{
+public:
+
+ virtual ~Resource() =default;
+
+ const std::string& getContent() const{
+ return this->m_content;
+ }
+
+protected:
+ std::string m_content;
+};