1 /* Copyright (C) 2007-2013 Arjen G Lentz & Antony T Curtis for Open Query
2 
3    This program is free software; you can redistribute it and/or modify
4    it under the terms of the GNU General Public License as published by
5    the Free Software Foundation; version 2 of the License, or
6    (at your option) any later version.
7 
8    This program is distributed in the hope that it will be useful,
9    but WITHOUT ANY WARRANTY; without even the implied warranty of
10    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11    GNU General Public License for more details.
12 
13    You should have received a copy of the GNU General Public License
14    along with this program; if not, write to the Free Software
15    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA */
16 
17 /* ======================================================================
18    Open Query Graph Computation Engine, based on a concept by Arjen Lentz
19    v3 implementation by Antony Curtis, Arjen Lentz, Andrew McDonnell
20    For more information, documentation, support, enhancement engineering,
21    see http://openquery.com/graph or contact graph@openquery.com
22    ======================================================================
23 */
24 #ifndef oq_graphcore_config_h_
25 #define oq_graphcore_config_h_
26 
27 #define BOOST_ALL_NO_LIB 1
28 #define BOOST_NO_RTTI 1
29 #define BOOST_NO_TYPEID 1
30 #define BOOST_NO_HASH 1
31 #define BOOST_NO_SLIST 1
32 
33 #ifdef DBUG_OFF
34 #define NDEBUG 1
35 #endif
36 
37 #include <boost/config.hpp>
38 
39 #endif
40 
41