summaryrefslogtreecommitdiff
path: root/src/chat/sess.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:47 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:47 +0200
commitd4c9f10efe815af146438cafb694d16da0e5650a (patch)
tree93956195c448768b2d58892cb672bee36a6a6463 /src/chat/sess.h
parentee315a27b72dc967a8a90f132725b7c8e4fd9fba (diff)
tagging ychat-0.7.0ychat-0.7.0
Diffstat (limited to 'src/chat/sess.h')
-rwxr-xr-xsrc/chat/sess.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/chat/sess.h b/src/chat/sess.h
index 033e954..717564a 100755
--- a/src/chat/sess.h
+++ b/src/chat/sess.h
@@ -3,29 +3,24 @@
#ifndef SESS_H
#define SESS_H
+#include <map>
#include <string>
-#include "user.h"
class cont;
using namespace std;
-class sess
+class sess : public name
{
+
private:
- string s_tmpid;
- user *p_user;
+ string sess_id;
public:
- sess(string s_tmpid);
+ sess(string s_id);
~sess();
- string get_tmpid();
-
- void set_user(user* p_user);
- user* get_user();
- void set_name(string s_name);
- string get_name();
+ string get_id();
void invalidate();
};
#endif