aboutsummaryrefslogtreecommitdiff
path: root/include/LocalUser.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/LocalUser.hpp')
-rw-r--r--include/LocalUser.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/LocalUser.hpp b/include/LocalUser.hpp
new file mode 100644
index 0000000..200f30f
--- /dev/null
+++ b/include/LocalUser.hpp
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "User.hpp"
+
+namespace odhtdb
+{
+ class LocalUser : public User
+ {
+ public:
+ static LocalUser* create(const std::string &name)
+ {
+ return new LocalUser(name);
+ }
+ private:
+ LocalUser(const std::string &name) : User(name){}
+ };
+} \ No newline at end of file