aboutsummaryrefslogtreecommitdiff
path: root/src/LocalUser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/LocalUser.cpp')
-rw-r--r--src/LocalUser.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/LocalUser.cpp b/src/LocalUser.cpp
new file mode 100644
index 0000000..660d09a
--- /dev/null
+++ b/src/LocalUser.cpp
@@ -0,0 +1,12 @@
+#include "../include/odhtdb/LocalUser.hpp"
+
+namespace odhtdb
+{
+ LocalUser::LocalUser(const Signature::KeyPair &_keyPair, const std::string &name, Group *group, const std::string &_plainPassword) :
+ User(User::Type::LOCAL, name, group),
+ keyPair(_keyPair),
+ plainPassword(_plainPassword)
+ {
+
+ }
+}