mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
11 lines
145 B
C++
11 lines
145 B
C++
#ifndef INTERFACE_THREAD_H
|
|
#define INTERFACE_THREAD_H
|
|
|
|
class IThread
|
|
{
|
|
public:
|
|
virtual void operator()(void)=0;
|
|
};
|
|
|
|
#endif //INTERFACE_THREAD_H
|