summaryrefslogtreecommitdiffstats
path: root/ksirc/ioBroadcast.h
diff options
context:
space:
mode:
Diffstat (limited to 'ksirc/ioBroadcast.h')
-rw-r--r--ksirc/ioBroadcast.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/ksirc/ioBroadcast.h b/ksirc/ioBroadcast.h
new file mode 100644
index 00000000..5be56390
--- /dev/null
+++ b/ksirc/ioBroadcast.h
@@ -0,0 +1,25 @@
+#ifndef KIOBROADCAST_H
+#define KIOBROADCAST_H
+
+#include "messageReceiver.h"
+
+class KSircIOBroadcast : public KSircMessageReceiver
+{
+public:
+ KSircIOBroadcast(KSircProcess *_proc) : KSircMessageReceiver(_proc)
+ {
+ proc = _proc;
+ setBroadcast(FALSE);
+ }
+ virtual ~KSircIOBroadcast();
+
+ virtual void sirc_receive(QCString str, bool broadcast);
+ virtual void control_message(int, QString);
+
+ virtual filterRuleList *defaultRules();
+
+private:
+ KSircProcess *proc;
+};
+
+#endif