29 #define STRINGIFY(PARAM) STRINGIFY_INTERNAL(PARAM) 30 #define STRINGIFY_INTERNAL(PARAM) #PARAM 33 #if !defined(_MSC_VER) 34 # if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L 35 # define TLP_TYPEOF decltype 37 # define TLP_TYPEOF typeof 43 #pragma warning(disable: 4251) //member is not dllexport 44 #pragma warning(disable: 4267) //conversion from 'size_t' to 'type', possible loss of data 45 #pragma warning(disable: 4275) //base class is not dllexport 46 #pragma warning(disable: 4244) //conversion to (or from) smaller integer type 47 #pragma warning(disable: 4355) //'this' pointer used in initializer list 48 #pragma warning(disable: 4800) //non-bool value coerced into bool (e.g. bool a = 5;) 49 #pragma warning(disable: 4503) //decorated name too long, truncated 50 #pragma warning(disable: 4344) //template specialisation results in different function being called (getProperty<>) 54 #if defined(DLL_TULIP) || defined(DLL_TULIP_GL) || defined(DLL_TULIP_QT) || defined(DLL_TULIP_QT2) 55 #pragma warning(disable: 4996) //deprecated functions 60 # define _DEPRECATED __declspec(deprecated) 61 # define _DEPRECATED_TYPEDEF(type, deprecated_type) typedef _DEPRECATED type deprecated_type 62 # define TLP_TYPEOF decltype 65 # include "boost/typeof/typeof.hpp" 66 # define TLP_TYPEOF BOOST_TYPEOF 69 # define __PRETTY_FUNCTION__ __FUNCTION__ //MSVC has a different name for pretty_function 70 # define strcasecmp stricmp //strcasecmp does not exists for VC, workaround 74 inline double fabs(
int i) {
75 return std::fabs(static_cast<double>(i));
78 # if _MSC_VER < 1800 // Visual Studio 2013 improved C99 support, no need to redefine some cmath functions 83 inline double sqrt(
int i) {
84 return std::sqrt(static_cast<double>(i));
87 inline double sqrt(
unsigned int i) {
88 return std::sqrt(static_cast<double>(i));
91 inline double log(
int i) {
92 return std::log(static_cast<double>(i));
95 inline double log(
unsigned int i) {
96 return std::log(static_cast<double>(i));
99 inline double floor(
int i) {
100 return std::floor(static_cast<double>(i));
103 inline double floor(
unsigned int i) {
104 return std::floor(static_cast<double>(i));
107 inline double round(
double d) {
108 return std::floor(d + 0.5);
111 inline float strtof(
const char* cptr,
char** endptr) {
112 return std::strtod(cptr, endptr);
115 #define isnan(x) ((x) != (x)) //you guessed it, this is a C99 feature, and VC++ does not support C99. workaroud this. 116 #define rint(arg) arg > 0 ? static_cast<int>(std::floor(static_cast<double>(arg))) : static_cast<int>(std::ceil(static_cast<double>(arg))) //Hey, nother C99 feature ! 119 inline double log1p(
double x) {
124 # else // _MSC_VER < 1800 129 # endif // _MSC_VER < 1800 133 # define _DEPRECATED __attribute__ ((deprecated)) 134 # define _DEPRECATED_TYPEDEF(type, deprecated_type) typedef type deprecated_type _DEPRECATED 135 # define stdext __gnu_cxx 138 #if __clang_major__ >= 3 && __clang_minor__ >= 4 139 #pragma clang diagnostic ignored "-Wdeprecated-register" 144 # define _DEPRECATED __attribute__ ((deprecated)) 145 # define _DEPRECATED_TYPEDEF(type, deprecated_type) typedef type deprecated_type _DEPRECATED 146 # define stdext __gnu_cxx 147 # if (__GNUC_MINOR__ < 4 && __GNUC__ < 4) 148 # include <ext/stl_hash_fun.h> 149 # elif (__GNUC_MINOR__ < 3 && __GNUC__ <= 4) 150 # include <ext/hash_fun.h> 151 # elif (__GNUC_MINOR__ > 3 && __GNUC__ >= 4) 152 # include <backward/hash_fun.h> 159 # define TLP_SCOPE __declspec(dllexport) 161 # define TLP_SCOPE __declspec(dllimport) 170 # define TLP_GL_SCOPE __declspec(dllexport) 172 # define TLP_GL_SCOPE __declspec(dllimport) 176 # define TLP_GL_SCOPE 181 # define TLP_QT_SCOPE __declspec(dllexport) 183 # define TLP_QT_SCOPE __declspec(dllimport) 187 # define TLP_QT_SCOPE 191 # ifdef DLL_TULIP_PYTHON 192 # define TLP_PYTHON_SCOPE __declspec(dllexport) 194 # define TLP_PYTHON_SCOPE __declspec(dllimport) 197 #ifndef TLP_PYTHON_SCOPE 198 # define TLP_PYTHON_SCOPE 202 # ifdef DLL_TULIP_OGDF 203 # define TLP_OGDF_SCOPE __declspec(dllexport) 205 # define TLP_OGDF_SCOPE __declspec(dllimport) 208 #ifndef TLP_OGDF_SCOPE 209 # define TLP_OGDF_SCOPE 219 extern TLP_SCOPE std::ostream& debug();
224 extern TLP_SCOPE
void setDebugOutput(std::ostream& os);
229 extern TLP_SCOPE std::ostream& warning();
234 extern TLP_SCOPE
void setWarningOutput(std::ostream& os);
239 extern TLP_SCOPE std::ostream& error();
244 extern TLP_SCOPE
void setErrorOutput(std::ostream& os);
250 extern TLP_SCOPE std::string getTulipVersion();