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.
|
|
|
#ifndef KIOLAG_H
|
|
|
|
#define KIOLAG_H
|
|
|
|
|
|
|
|
#include <tqobject.h>
|
|
|
|
|
|
|
|
#include "messageReceiver.h"
|
|
|
|
|
|
|
|
class KSircIOLAG : public TQObject,
|
|
|
|
public KSircMessageReceiver
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KSircIOLAG(KSircProcess *_proc);
|
|
|
|
virtual ~KSircIOLAG();
|
|
|
|
|
|
|
|
virtual void sirc_receive(TQCString, bool broadcast);
|
|
|
|
virtual void control_message(int, TQString);
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void timerEvent ( TQTimerEvent * );
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void outputLine(TQCString);
|
|
|
|
|
|
|
|
private:
|
|
|
|
KSircProcess *proc;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|