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 #include "openDBPG.h" 00015 #endif 00016 #ifdef DEFINE_OPENDBODBC 00017 #include "openODBC.h" 00018 #endif 00019 #ifdef DEFINE_OPENMYDB 00020 #include "openMyDB.h" 00021 #endif 00022 00023 #endif
1.2.18