mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-23 20:12:39 +03:00
fee4095624
synergy.cpp and server.cpp into cmd/synergyd as synergyd.cpp. Moved and renamed related files. Moved remaining source files into lib/.... Modified and added makefiles as appropriate. Result is that library files are under lib with each library in its own directory and program files are under cmd with each command in its own directory.
17 lines
227 B
C++
17 lines
227 B
C++
#ifndef IJOB_H
|
|
#define IJOB_H
|
|
|
|
#include "IInterface.h"
|
|
|
|
//! Job interface
|
|
/*!
|
|
A job is an interface for executing some function.
|
|
*/
|
|
class IJob : public IInterface {
|
|
public:
|
|
//! Run the job
|
|
virtual void run() = 0;
|
|
};
|
|
|
|
#endif
|