mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-23 20:12:39 +03:00
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
|