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 _KST_STD_IN_
|
|
#define _KST_STD_IN_
|
|
|
|
|
|
#include "ksticker.h"
|
|
|
|
class StdInTicker : public KSTicker
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
StdInTicker();
|
|
~StdInTicker();
|
|
|
|
protected:
|
|
void closeEvent ( TQCloseEvent * );
|
|
|
|
public slots:
|
|
void readsocket(int socket);
|
|
void end();
|
|
|
|
};
|
|
|
|
#endif
|
|
|