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