mirror of
https://github.com/usatiuk/backup.git
synced 2025-10-27 01:37:49 +01:00
proper cmake
This commit is contained in:
23
tests/utils/includes/Cleaner.h
Normal file
23
tests/utils/includes/Cleaner.h
Normal 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
|
||||
Reference in New Issue
Block a user