TDME2
1.9.121
src
tdme
os
filesystem
FileNameFilter.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/os/filesystem/fwd-tdme.h
>
5
6
#include <string>
7
8
using
std::string;
9
10
/**
11
* File system file name filter interface
12
* @author Andreas Drewke
13
*/
14
struct
tdme::os::filesystem::FileNameFilter
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
};
fwd-tdme.h
tdme::os::filesystem::FileNameFilter
File system file name filter interface.
Definition:
FileNameFilter.h:15
tdme::os::filesystem::FileNameFilter::accept
virtual bool accept(const string &path, const string &file)=0
Accept a file.
tdme::os::filesystem::FileNameFilter::~FileNameFilter
virtual ~FileNameFilter()
Destructor.
Definition:
FileNameFilter.h:19
tdme.h
Generated by
1.9.3