mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-08 21:03:54 +08:00
on unix, but client screens don't simulate events other than mouse move. also not supporting clipboard at all yet and the main app is just a temporary framework to test with. must clean up protocol and communication.
15 lines
143 B
C++
15 lines
143 B
C++
#ifndef IJOB_H
|
|
#define IJOB_H
|
|
|
|
class IJob {
|
|
public:
|
|
IJob() { }
|
|
virtual ~IJob() { }
|
|
|
|
// manipulators
|
|
|
|
virtual void run() = 0;
|
|
};
|
|
|
|
#endif
|