#ifndef BACKUPHELPER_H #define BACKUPHELPER_H #include #include #include namespace Media { namespace BackupHelper { LIB_EXPORT std::string &backupDirectory(); LIB_EXPORT void restoreOriginalFileFromBackupFile(const std::string &originalPath, const std::string &backupPath, std::fstream &originalStream, std::fstream &backupStream); LIB_EXPORT void createBackupFile(const std::string &originalPath, std::string &backupPath, std::fstream &backupStream); } } #endif // BACKUPHELPER_H