dedup/inc/searchfolder.h

11 lines
147 B
C
Raw Normal View History

2022-10-21 19:39:55 +02:00
#pragma once
#include <string>
struct SearchFolder {
2022-10-22 00:43:34 +02:00
SearchFolder(const std::string& path, bool recurse);
2022-10-21 19:39:55 +02:00
std::string path;
bool recurse;
};