summaryrefslogtreecommitdiffstats
path: root/ksirc/ioLAG.h
blob: 769edfdf144fa1aaf2e85cc9a66e681a35f2098e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#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