mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
14 lines
277 B
C++
14 lines
277 B
C++
#include <vector>
|
|
#include <string>
|
|
|
|
class IndexFiles
|
|
{
|
|
public:
|
|
static const std::vector<std::string>& getIndexFiles(void);
|
|
static void addIndexFile( const std::string &fn);
|
|
|
|
private:
|
|
static std::vector<std::string> files;
|
|
};
|
|
|
|
void add_default_indexfiles(void); |