summaryrefslogtreecommitdiff
path: root/src/user.hpp
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 14:32:27 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-04-18 14:32:27 +0200
commit84a3e2f6bcb4da4ab156e39d79f0f8a36c2a0e90 (patch)
treea84f9620a087c3a2d924e5a14b404a88c0186d29 /src/user.hpp
parentde50c30a936b87d79f816790230856347b0dff7e (diff)
downloadaCms-84a3e2f6bcb4da4ab156e39d79f0f8a36c2a0e90.tar.gz
aCms-84a3e2f6bcb4da4ab156e39d79f0f8a36c2a0e90.tar.bz2
added placeholders for directories
added user app and content (empty for now) added storage and sqlite script
Diffstat (limited to 'src/user.hpp')
-rw-r--r--src/user.hpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/user.hpp b/src/user.hpp
index 99a0894..041585e 100644
--- a/src/user.hpp
+++ b/src/user.hpp
@@ -1,14 +1,16 @@
-#ifndef USER_CONTENT_HPP
-#define USER_CONTENT_HPP
+#ifndef USER_HPP
+#define USER_HPP
-#include <cppcms/view.h>
+#include "master.hpp"
-#include <string>
+namespace apps {
-namespace content {
+class user : public master {
+ public:
+ user( strusCms &cms );
-struct user : public cppcms::base_content {
- std::string title;
+ private:
+ void login( );
};
}