mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
15 lines
381 B
C++
15 lines
381 B
C++
#pragma once
|
|
|
|
#include "FileBackup.h"
|
|
|
|
class FullFileBackup : public FileBackup
|
|
{
|
|
public:
|
|
FullFileBackup(ClientMain* client_main, int clientid, std::wstring clientname, LogAction log_action, int group, bool use_tmpfiles, std::wstring tmpfile_path, bool use_reflink, bool use_snapshots);
|
|
|
|
protected:
|
|
virtual bool doFileBackup();
|
|
|
|
|
|
SBackup getLastFullDurations();
|
|
}; |