Make sure EOF is defined
[xapian.git] / xapian-applications / omega / weight.cc
blob04c5ce02ff3ea4f45659605e19c11c2e6791cad6
1 /** @file weight.cc
2 * @brief Set the weighting scheme for Omega
3 */
4 /* Copyright (C) 2009,2013,2016 Olly Betts
5 * Copyright (C) 2013 Aarsh Shah
6 * Copyright (C) 2017 Vivek Pal
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (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 USA
23 #include <config.h>
25 #include "weight.h"
27 #include <cstdlib>
29 using namespace std;
31 void
32 set_weighting_scheme(Xapian::Enquire & enq, const string & scheme,
33 bool force_boolean)
35 if (!force_boolean) {
36 if (scheme.empty()) return;
38 const Xapian::Weight * wt = Xapian::Weight::create(scheme);
39 enq.set_weighting_scheme(*wt);
41 delete wt;