You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
555 B
33 lines
555 B
#ifndef KIONOTIFY_H
|
|
#define KIONOTIFY_H
|
|
|
|
#include <tqobject.h>
|
|
|
|
#include "messageReceiver.h"
|
|
|
|
class KSircIONotify : public TQObject,
|
|
public KSircMessageReceiver
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KSircIONotify(KSircProcess *_proc);
|
|
virtual ~KSircIONotify();
|
|
|
|
virtual void sirc_receive(TQCString, bool broadcast);
|
|
virtual void control_message(int, TQString);
|
|
|
|
virtual filterRuleList *defaultRules();
|
|
|
|
signals:
|
|
virtual void notify_online(TQString);
|
|
virtual void notify_offline(TQString);
|
|
|
|
protected slots:
|
|
|
|
private:
|
|
KSircProcess *proc;
|
|
};
|
|
|
|
#endif
|