This repository has been archived on 2021-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
modetw/include/backup.hpp

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