summaryrefslogtreecommitdiff
path: root/src/user.hpp
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 11:53:48 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 11:53:48 +0200
commitdc080f8fe2697569923ed326f8080cb0baedc46b (patch)
tree84ccd679d3c9de649583bb51c830d069e6419432 /src/user.hpp
parent2b5cb826fae8325661abd54eb6521cade1c80dba (diff)
downloadaCms-dc080f8fe2697569923ed326f8080cb0baedc46b.tar.gz
aCms-dc080f8fe2697569923ed326f8080cb0baedc46b.tar.bz2
some rearrangement
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