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.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/noncore/net/opieirc/ircserver.h b/noncore/net/opieirc/ircserver.h
new file mode 100644
index 0000000..5f06c73
--- a/dev/null
+++ b/noncore/net/opieirc/ircserver.h
@@ -0,0 +1,58 @@
1/*
2 OpieIRC - An embedded IRC client
3 Copyright (C) 2002 Wenzel Jakob
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
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
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
19*/
20
21#ifndef __IRCSERVER_H
22#define __IRCSERVER_H
23
24#include <qstring.h>
25
26/* IRCServer stores all information required to
27 establish a connection to a server. */
28
29class IRCServer {
30public:
31 IRCServer();
32
33 void setHostname(QString hostname);
34 void setDescription(QString description);
35 void setPort(int port);
36 void setUsername(QString username);
37 void setPassword(QString password);
38 void setNick(QString nick);
39 void setRealname(QString realname);
40
41 QString hostname();
42 QString description();
43 unsigned short int port();
44 QString username();
45 QString password();
46 QString nick();
47 QString realname();
48protected:
49 QString m_hostname;
50 QString m_description;
51 unsigned short int m_port;
52 QString m_username;
53 QString m_password;
54 QString m_nick;
55 QString m_realname;
56};
57
58#endif /* __IRCSERVER_H */