Update to Unicode 16.0.0
[xapian.git] / xapian-applications / omega / configfile.h
blob175ffe5ba180d299586022cdf062e53a555de206
1 /** @file
2 * @brief Read a config file for omega.
3 */
4 /* Copyright 2001 Lemur Consulting Ltd.
5 * Copyright 2002 Ananova Ltd
6 * Copyright 2003,2005,2015 Olly Betts
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
21 * USA
24 #ifndef HGUARD_OMEGA_CONFIGFILE
25 #define HGUARD_OMEGA_CONFIGFILE
27 #include <string>
28 using std::string;
30 extern string database_dir;
31 extern string template_dir;
32 extern string default_template;
33 extern string default_db;
34 extern string log_dir;
35 extern string cdb_dir;
37 void read_config_file();
39 #endif /* HGUARD_OMEGA_CONFIGFILE */