mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
15 lines
217 B
C++
15 lines
217 B
C++
#include "../Interface/Thread.h"
|
|
|
|
class IFileDownload;
|
|
|
|
class ServerUpdate : public IThread
|
|
{
|
|
public:
|
|
ServerUpdate(void);
|
|
|
|
void operator()(void);
|
|
|
|
private:
|
|
|
|
bool waitForDownload(IFileDownload *dl);
|
|
}; |