summaryrefslogtreecommitdiff
path: root/src/client/User.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/User.h')
-rw-r--r--src/client/User.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/client/User.h b/src/client/User.h
new file mode 100644
index 0000000..9dd231c
--- /dev/null
+++ b/src/client/User.h
@@ -0,0 +1,29 @@
+/*
+ * User.h
+ *
+ * Created on: Jan 25, 2012
+ * Author: Simon
+ */
+
+#ifndef USER_H_
+#define USER_H_
+
+#include <string>
+
+class User
+{
+public:
+ int ID;
+ std::string Username;
+ std::string SessionID;
+ std::string SessionKey;
+ User(int id, std::string username):
+ ID(id),
+ Username(username)
+ {
+
+ }
+};
+
+
+#endif /* USER_H_ */