summaryrefslogtreecommitdiff
path: root/user.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
commitc507ce3198ea4d822832cc8740f0128df8873c02 (patch)
tree260ca004916ae03b7d5438bf89007e3984da6934 /user.h
parentc8b2ef7b899766d04562f7e04a84251cea8fa701 (diff)
tagging ychat-0.3ychat-0.3
Diffstat (limited to 'user.h')
-rwxr-xr-xuser.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/user.h b/user.h
index 75be662..d0c182f 100755
--- a/user.h
+++ b/user.h
@@ -5,7 +5,7 @@
#include "incl.h"
#include "hmap.h"
#include "name.h"
-#include "s_lang.h"
+
using namespace std;
class room;
@@ -20,7 +20,6 @@ private:
long l_time; // user's last activity time.
rang r_rang; // user's rang ( see enum rang @ globals.h ).
rang r_oldr; // user's previous rang.
- string s_id;
string s_agnt; // user's http user agent.
string s_away; // user's last away message.
string s_col1; // user's nick color.
@@ -39,8 +38,6 @@ public:
// small inline methods:
string get_col1() const { return s_col1; }
- string get_id() const { return s_id; }
- void set_id ( string s_id ) { this -> s_id = s_id; }
void set_col1 ( string s_col1 ) { this -> s_col1 = s_col1; }
rang get_rang ( ) const { return r_rang; }
@@ -78,7 +75,9 @@ public:
// appends a string to s_mess including br.
virtual void msg_post( string *p_msg );
+
virtual void get_user_list( string &s_list, string &s_seperator );
+
};
#endif