mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
14 lines
181 B
C++
14 lines
181 B
C++
#pragma once
|
|
|
|
class ServerUpdate
|
|
{
|
|
public:
|
|
ServerUpdate(void);
|
|
|
|
void update_client();
|
|
|
|
void update_server_version_info();
|
|
|
|
private:
|
|
void read_update_location();
|
|
}; |