summaryrefslogtreecommitdiff
path: root/src/user.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/user.hpp')
-rw-r--r--src/user.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/user.hpp b/src/user.hpp
new file mode 100644
index 0000000..99a0894
--- /dev/null
+++ b/src/user.hpp
@@ -0,0 +1,16 @@
+#ifndef USER_CONTENT_HPP
+#define USER_CONTENT_HPP
+
+#include <cppcms/view.h>
+
+#include <string>
+
+namespace content {
+
+struct user : public cppcms::base_content {
+ std::string title;
+};
+
+}
+
+#endif