summaryrefslogtreecommitdiff
path: root/src/channel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/channel.h')
-rw-r--r--src/channel.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/channel.h b/src/channel.h
index 9f7557c1..3cb38a1c 100644
--- a/src/channel.h
+++ b/src/channel.h
@@ -27,8 +27,6 @@
class Channel
{
public:
-
- typedef std::vector<std::string> ChannelUsers;
/**
* Constructor.
@@ -59,12 +57,6 @@ class Channel
{ return mAnnouncement; }
/**
- * Get the list of users in this channel
- */
- const ChannelUsers& getUserList() const
- { return mUserList; }
-
- /**
* Sets the name of the channel.
*/
void setName(const std::string &channelName)
@@ -76,20 +68,9 @@ class Channel
void setAnnouncement(const std::string &channelAnnouncement)
{ mAnnouncement = channelAnnouncement; }
- /**
- * Adds a user to this channel.
- */
- void addUser(const std::string &user);
-
- /**
- * Removes a user from the channel.
- */
- void removeUser(const std::string &user);
-
private:
unsigned short mId;
std::string mName;
std::string mAnnouncement;
- ChannelUsers mUserList;
};