summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircoutput.cpp
authorwazlaf <wazlaf>2002-09-10 23:12:17 (UTC)
committer wazlaf <wazlaf>2002-09-10 23:12:17 (UTC)
commitd478be344e2ba383a1e38d2a1705de1cdbe2e838 (patch) (unidiff)
tree9daf7b496c74c695ed8bd72a6ccd321f770b043c /noncore/net/opieirc/ircoutput.cpp
parent2d6c8bd7290b766c31c100cd2d66ef0d1d0c407c (diff)
downloadopie-d478be344e2ba383a1e38d2a1705de1cdbe2e838.zip
opie-d478be344e2ba383a1e38d2a1705de1cdbe2e838.tar.gz
opie-d478be344e2ba383a1e38d2a1705de1cdbe2e838.tar.bz2
initial import of OpieIRC v0.1
Diffstat (limited to 'noncore/net/opieirc/ircoutput.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircoutput.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/noncore/net/opieirc/ircoutput.cpp b/noncore/net/opieirc/ircoutput.cpp
new file mode 100644
index 0000000..aa57d86
--- a/dev/null
+++ b/noncore/net/opieirc/ircoutput.cpp
@@ -0,0 +1,22 @@
1#include "ircoutput.h"
2
3IRCOutput::IRCOutput(IRCOutputType type, QString message) {
4 m_type = type;
5 m_message = message;
6}
7
8IRCOutputType IRCOutput::type() {
9 return m_type;
10}
11
12QString IRCOutput::message() {
13 return m_message;
14}
15
16void IRCOutput::addParam(void *data) {
17 m_parameters.append(data);
18}
19
20void *IRCOutput::getParam(int index) {
21 return m_parameters.at(index);
22}