proper cmake

This commit is contained in:
2023-06-04 16:10:06 +02:00
parent 13a8b4c35d
commit fdcb0cf0c4
154 changed files with 1273 additions and 1620 deletions

View File

@@ -0,0 +1,23 @@
//
// Created by Stepan Usatiuk on 14.04.2023.
//
#ifndef SEMBACKUP_CLEANER_H
#define SEMBACKUP_CLEANER_H
#include <filesystem>
#include <utility>
#include <vector>
class Cleaner {
public:
Cleaner(std::vector<std::filesystem::path> toClean);
~Cleaner();
private:
std::vector<std::filesystem::path> toClean;
};
#endif//SEMBACKUP_CLEANER_H