mirror of
https://github.com/debauchee/barrier.git
synced 2024-11-23 09:43:24 +03:00
12 lines
136 B
C++
12 lines
136 B
C++
#ifndef IJOB_H
|
|
#define IJOB_H
|
|
|
|
#include "IInterface.h"
|
|
|
|
class IJob : public IInterface {
|
|
public:
|
|
virtual void run() = 0;
|
|
};
|
|
|
|
#endif
|