16 lines
376 B
C
16 lines
376 B
C
![]() |
#ifndef PLGUIN_POSTGRESSING_H
|
||
|
#define PLGUIN_POSTGRESSING_H
|
||
|
|
||
|
#include "LibapiThread.h"
|
||
|
|
||
|
class PlguinPostgressing : BaseRunnable
|
||
|
{
|
||
|
public:
|
||
|
PlguinPostgressing();
|
||
|
virtual ~PlguinPostgressing();
|
||
|
static void onMouse(int event, int x, int y, int, void*);
|
||
|
int OnProcess(LibapiThread* pThisThread, void* pMsg);
|
||
|
void OnEndProcess(LibapiThread* pThisThread, void* pMsg);
|
||
|
};
|
||
|
|
||
|
#endif
|