summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircserver.h
Unidiff
Diffstat (limited to 'noncore/net/opieirc/ircserver.h') (more/less context) (show 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
@@ -30,4 +30,6 @@ class 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);
@@ -39,3 +41,5 @@ public:
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();
@@ -47,2 +51,3 @@ public:
47 QString realname(); 51 QString realname();
52 QString channels();
48protected: 53protected:
@@ -55,2 +60,3 @@ protected:
55 QString m_realname; 60 QString m_realname;
61 QString m_channels;
56}; 62};