File: backup_file.hh

package info (click to toggle)
zbackup 1.5-4
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 868 kB
  • sloc: cpp: 6,957; ansic: 468; python: 207; makefile: 10
file content (28 lines) | stat: -rw-r--r-- 822 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) 2012-2014 Konstantin Isakov <ikm@zbackup.org> and ZBackup contributors, see CONTRIBUTORS
// Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE

#ifndef BACKUP_FILE_HH_INCLUDED
#define BACKUP_FILE_HH_INCLUDED

#include <exception>
#include <string>

#include "encryption_key.hh"
#include "ex.hh"
#include "zbackup.pb.h"

namespace BackupFile {

using std::string;

DEF_EX( Ex, "Backup file exception", std::exception )
DEF_EX( exUnsupportedVersion, "Unsupported version of the backup file format", Ex )

/// Saves the given BackupInfo data into the given file
void save( string const & fileName, EncryptionKey const &, BackupInfo const & );

/// Loads the given BackupInfo data from the given file
void load( string const & fileName, EncryptionKey const &, BackupInfo & );
}

#endif