00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef OM_HGUARD_OM_H
00025 #define OM_HGUARD_OM_H
00026
00027 #ifdef __GNUC__
00028 #if !defined(__GXX_ABI_VERSION) || __GXX_ABI_VERSION != 100
00029 #error The C++ ABI version of compiler you are using does not match
00030 #error that of the compiler used to build the library. The versions
00031 #error must match or your program will not work correctly.
00032 #error The Xapian library was built with g++ 3.0.4
00033 #endif
00034 #endif
00035
00036
00037 #include "om/omtypes.h"
00038 #include "om/omerror.h"
00039 #include "om/omerrorhandler.h"
00040
00041
00042 #include "om/omsettings.h"
00043
00044
00045 #include "om/omdocument.h"
00046 #include "om/omdatabase.h"
00047 #include "om/ompostlistiterator.h"
00048 #include "om/ompositionlistiterator.h"
00049 #include "om/omtermlistiterator.h"
00050 #include "om/omvalueiterator.h"
00051
00052
00053 #include "om/omenquire.h"
00054 #include "om/omquery.h"
00055 #include "om/omexpanddecider.h"
00056
00057
00058 #include "om/omstem.h"
00059
00060
00061 #include "om/omoutput.h"
00062
00063 #endif