dedup/inc/searchfolder.h

11 lines
147 B
C++

#pragma once
#include <string>
struct SearchFolder {
SearchFolder(const std::string& path, bool recurse);
std::string path;
bool recurse;
};