1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:30:44 +03:00
gmenu2x/src/monitor.h

18 lines
226 B
C
Raw Normal View History

#ifndef __MONITOR_H__
#define __MONITOR_H__
#include <string>
#include <pthread.h>
class Monitor {
public:
Monitor(std::string path);
~Monitor();
private:
std::string path;
pthread_t thd;
};
#endif /* __MONITOR_H__ */