blob: 9724e920f41a08b216d792540d93057afb3e628b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __LOAD_H__
#define __LOAD_H__
#include <string>
using namespace std;
void add_dir(string directory, bool complain=true);
void read_config(const char *cfg, bool complain=true);
#endif
|