18 lines
280 B
C++
18 lines
280 B
C++
#ifndef BACKUP_HPP
|
|
#define BACKUP_HPP
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class Backup
|
|
{
|
|
public:
|
|
Backup(const std::string&, const std::vector<std::string>&);
|
|
void Execute(const std::string&) const;
|
|
private:
|
|
std::string _prefix;
|
|
std::vector<std::string> _vec;
|
|
};
|
|
|
|
#endif
|