IRC SERVER
The goal of this project is to make you write your own IRC server.
CantSentMessagesOutside.hpp
Go to the documentation of this file.
1 #ifndef CAN_SENT_MESSAGES_OUTSIDE_H
2 #define CAN_SENT_MESSAGES_OUTSIDE_H
3 
4 // Our includes
5 #include "../Mode.hpp"
6 
8 {
9  public:
11  {
13  }
14 
15  void add()
16  {
18  }
19 
20  void remove()
21  {
23  }
24 };
25 #endif
CantSentMessagesOutside::remove
void remove()
Definition: CantSentMessagesOutside.hpp:20
CantSentMessagesOutside::add
void add()
Definition: CantSentMessagesOutside.hpp:15
ChannelModeType::_mode
ChannelMode _mode
Definition: Mode.hpp:16
Channel::removeMode
void removeMode(ChannelMode mode)
Definition: Channel.hpp:349
ChannelModeType
Definition: Mode.hpp:13
CHANNEL_MODE_CANT_SENT_MESSAGES_OUTSIDE
@ CHANNEL_MODE_CANT_SENT_MESSAGES_OUTSIDE
Definition: Channel.hpp:13
CantSentMessagesOutside::CantSentMessagesOutside
CantSentMessagesOutside()
Definition: CantSentMessagesOutside.hpp:10
ChannelModeType::_channel
Channel * _channel
Definition: Mode.hpp:19
CantSentMessagesOutside
Definition: CantSentMessagesOutside.hpp:7
Channel::addMode
void addMode(ChannelMode mode)
Definition: Channel.hpp:343