TDME2 1.9.121
FileNameFilter.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#include <string>
7
8using std::string;
9
10/**
11 * File system file name filter interface
12 * @author Andreas Drewke
13 */
15{
16 /**
17 * Destructor
18 */
19 virtual ~FileNameFilter() {}
20
21 /**
22 * Accept a file
23 * @param path path
24 * @param file file
25 * @return if to accept file
26 */
27 virtual bool accept(const string& path, const string& file) = 0;
28};
File system file name filter interface.
virtual bool accept(const string &path, const string &file)=0
Accept a file.
virtual ~FileNameFilter()
Destructor.