00001 #ifndef OPEN_DB_HPP 00002 #define OPEN_DB_HPP 00003 00004 // Always include the base interfaces 00005 #include "openDB.h" 00006 00007 /* 00008 Include all implementation files to be used by the client program 00009 these definitions are set by an environment variable IMPL_DEFS. 00010 Ex: IMPL_DEFS=-DDEFINE_OPENMYDB 00011 If any or all of these are defined they are included in the build. 00012 */ 00013 #ifdef DEFINE_OPENDBPG 00014 #define JUST_PG_FIELD_INTERFACES 00015 #include "openDBPG.h" 00016 #endif 00017 #ifdef DEFINE_OPENDBODBC 00018 #include "openODBC.h" 00019 #endif 00020 #ifdef DEFINE_OPENMYDB 00021 #include "openMyDB.h" 00022 #endif 00023 00024 #endif
1.5.5