mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
18 lines
250 B
C++
18 lines
250 B
C++
#include "settings.h"
|
|
|
|
#ifdef CAMPUS
|
|
|
|
#include "../Interface/Thread.h"
|
|
|
|
class CCampusThread : public IThread
|
|
{
|
|
public:
|
|
CCampusThread(std::string sname);
|
|
void operator()(void);
|
|
|
|
private:
|
|
std::string servername;
|
|
};
|
|
|
|
#endif //CAMPUS
|