urbackup_backend/urbackupserver/server_update.h
2012-02-25 02:45:06 +01:00

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);
};