18 lines
256 B
C++
18 lines
256 B
C++
#ifndef _CLI_H
|
|
#define _CLI_H
|
|
|
|
class PseuInstance;
|
|
|
|
class CliRunnable : public ZThread::Runnable
|
|
{
|
|
public:
|
|
CliRunnable(PseuInstance*);
|
|
void run(void);
|
|
void stop() { _stop=true; }
|
|
|
|
private:
|
|
bool _stop;
|
|
PseuInstance *_instance;
|
|
};
|
|
|
|
#endif |