00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef _Isorropia_ConfigDefs_hpp_
00032 #define _Isorropia_ConfigDefs_hpp_
00033
00034
00035
00036
00037
00038
00039
00040 #ifdef PACKAGE
00041 #undef PACKAGE
00042 #endif
00043
00044 #ifdef PACKAGE_NAME
00045 #undef PACKAGE_NAME
00046 #endif
00047
00048 #ifdef PACKAGE_BUGREPORT
00049 #undef PACKAGE_BUGREPORT
00050 #endif
00051
00052 #ifdef PACKAGE_STRING
00053 #undef PACKAGE_STRING
00054 #endif
00055
00056 #ifdef PACKAGE_TARNAME
00057 #undef PACKAGE_TARNAME
00058 #endif
00059
00060 #ifdef PACKAGE_VERSION
00061 #undef PACKAGE_VERSION
00062 #endif
00063
00064 #ifdef VERSION
00065 #undef VERSION
00066 #endif
00067
00068 #include <Isorropia_config.h>
00069
00070 #ifdef HAVE_IOSTREAM
00071 #include <iostream>
00072 #else
00073 #error "Isorropia must have <iostream>"
00074 #endif
00075
00076 #ifdef HAVE_FSTREAM
00077 #include <fstream>
00078 #else
00079 #error "Isorropia must have <fstream>"
00080 #endif
00081
00082 #ifdef HAVE_EXCEPTION
00083 #include <exception>
00084 #else
00085 #error "Isorropia must have <exception>"
00086 #endif
00087
00088 #ifdef HAVE_VECTOR
00089 #include <vector>
00090 #else
00091 #error "Isorropia must have <vector>"
00092 #endif
00093
00094 #ifdef HAVE_SET
00095 #include <set>
00096 #else
00097 #error "Isorropia must have <set>"
00098 #endif
00099
00100 #ifdef HAVE_TIME_H
00101 #include <time.h>
00102 #endif
00103
00104
00105 #if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
00106 #define __deprecated __attribute__((__deprecated__))
00107 #else
00108 #define __deprecated
00109 #endif
00110
00111
00112 #endif //_Isorropia_ConfigDefs_hpp_
00113