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
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #ifdef __GNUC__
00044 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
00045 #error The C++ ABI version of compiler you are using does not match
00046 #error that of the compiler used to build the library. The versions
00047 #error must match or your program will not work correctly.
00048 #error The Xapian library was built with g++ 2.95
00049 #endif
00050 #endif
00051
00052
00053 #include "om/omtypes.h"
00054 #include "om/omerror.h"
00055 #include "om/omerrorhandler.h"
00056
00057
00058 #include "om/omsettings.h"
00059
00060
00061 #include "om/omdocument.h"
00062 #include "om/omdatabase.h"
00063 #include "om/ompostlistiterator.h"
00064 #include "om/ompositionlistiterator.h"
00065 #include "om/omtermlistiterator.h"
00066 #include "om/omvalueiterator.h"
00067
00068
00069 #include "om/omenquire.h"
00070 #include "om/omquery.h"
00071 #include "om/omexpanddecider.h"
00072
00073
00074 #include "om/omstem.h"
00075
00076
00077 #include "om/omoutput.h"
00078
00079 #endif