1 /*------------------------------------------------------------------------------
2 * Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team
3 *
4 * Distributable under the terms of either the Apache License (Version 2.0) or
5 * the GNU Lesser General Public License, as specified in the COPYING file.
6 ------------------------------------------------------------------------------*/
7 #ifndef lucene_internal_apiheader_h
8 #define lucene_internal_apiheader_h
9 
10 /**
11 * This is the header that all clucene-core source code includes.
12 * We include the shared code header and the public StdHeader.h header.
13 */
14 
15 #include "CLucene/StdHeader.h"
16 #include "CLucene/_SharedHeader.h"
17 
18 //todo: this code needs to go to shared
19 #include "CLucene/util/_VoidMap.h"
20 #include "CLucene/util/_VoidList.h"
21 
22 using namespace std;
23 
24 #endif // lucene_apiheader_h
25