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, 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( );
};
}