summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircserver.h
Unidiff
Diffstat (limited to 'noncore/net/opieirc/ircserver.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircserver.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/noncore/net/opieirc/ircserver.h b/noncore/net/opieirc/ircserver.h
index f56f231..0bc7d4c 100644
--- a/noncore/net/opieirc/ircserver.h
+++ b/noncore/net/opieirc/ircserver.h
@@ -7,52 +7,58 @@
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
9 9
10 This program is distributed in the hope that it will be useful, 10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details. 13 GNU General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public License 15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software 16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 18
19*/ 19*/
20 20
21#ifndef __IRCSERVER_H 21#ifndef __IRCSERVER_H
22#define __IRCSERVER_H 22#define __IRCSERVER_H
23 23
24#include <qstring.h> 24#include <qstring.h>
25 25
26/* IRCServer stores all information required to 26/* IRCServer stores all information required to
27 establish a connection to a server. */ 27 establish a connection to a server. */
28 28
29class IRCServer { 29class IRCServer {
30public: 30public:
31 /* Initialize to the default values */
31 IRCServer(); 32 IRCServer();
32 33
34 /* Setters */
33 void setName(QString name); 35 void setName(QString name);
34 void setHostname(QString hostname); 36 void setHostname(QString hostname);
35 void setPort(int port); 37 void setPort(int port);
36 void setUsername(QString username); 38 void setUsername(QString username);
37 void setPassword(QString password); 39 void setPassword(QString password);
38 void setNick(QString nick); 40 void setNick(QString nick);
39 void setRealname(QString realname); 41 void setRealname(QString realname);
42 void setChannels(QString channels);
40 43
44 /* Getters */
41 QString hostname(); 45 QString hostname();
42 QString name(); 46 QString name();
43 unsigned short int port(); 47 unsigned short int port();
44 QString username(); 48 QString username();
45 QString password(); 49 QString password();
46 QString nick(); 50 QString nick();
47 QString realname(); 51 QString realname();
52 QString channels();
48protected: 53protected:
49 QString m_hostname; 54 QString m_hostname;
50 QString m_name; 55 QString m_name;
51 unsigned short int m_port; 56 unsigned short int m_port;
52 QString m_username; 57 QString m_username;
53 QString m_password; 58 QString m_password;
54 QString m_nick; 59 QString m_nick;
55 QString m_realname; 60 QString m_realname;
61 QString m_channels;
56}; 62};
57 63
58#endif /* __IRCSERVER_H */ 64#endif /* __IRCSERVER_H */