blob: 915a5e9d5930a70bdce4ba50c9c7ec4250a55b8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*****
* locate.h
* Tom Prince 2005/03/24
*
* Locate files in search path.
*****/
#ifndef LOCATE_H
#define LOCATE_H
#include "common.h"
namespace settings {
typedef mem::list<string> file_list_t;
extern file_list_t searchPath;
// Find the appropriate file, first looking in the local directory, then the
// directory given in settings, and finally the global system directory.
string locateFile(string id);
namespace fs {
// Check to see if a file of given name exists.
bool exists(string filename);
}
} // namespace settings
#endif // LOCATE_H
|