/** * @file * @author 2012-2013 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de) * @copyright Simplified BSD * * @cond * This program is free software: you can redistribute it and/or modify * it under the terms of the FreeBSD license as published by the FreeBSD * project. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the FreeBSD license along with this * program. If not, see . * @endcond */ #ifndef COMMON_H_YZ3CIYP #define COMMON_H_YZ3CIYP #if __cplusplus >= 201402L #define DEPRECATED [[deprecated]] #elif defined(__GNUC__) #define DEPRECATED __attribute__((deprecated)) #elif defined(_MSC_VER) #define DEPRECATED __declspec(deprecated) #else #pragma message("WARNING: You need to implement DEPRECATED for this compiler") #define DEPRECATED(alternative) #endif #if defined(_WIN32) && !defined(USCXML_STATIC) # ifdef USCXML_EXPORT # define USCXML_API __declspec(dllexport) # else # define USCXML_API __declspec(dllimport) # endif #else # define USCXML_API #endif #ifdef _WIN32 #include // see http://stackoverflow.com/questions/1372480/c-redefinition-header-files #define _WINSOCKAPI_ // stops windows.h including winsock.h #define WIN32_LEAN_AND_MEAN #include #undef WIN32_LEAN_AND_MEAN #else #include #endif #if defined(_WIN32) inline int setenv(const char *name, const char *value, int overwrite) { int errcode = 0; if(!overwrite) { size_t envsize = 0; errcode = getenv_s(&envsize, NULL, 0, name); if(errcode || envsize) return errcode; } return _putenv_s(name, value); } #endif #define _USE_MATH_DEFINES #include #if defined(_MSC_VER) // disable signed / unsigned comparison warnings #pragma warning (disable : 4018) // possible loss of data #pragma warning (disable : 4244) #pragma warning (disable : 4267) // 'this' : used in base member initializer list #pragma warning (disable : 4355) // is thrown alot in arabica headers #pragma warning (disable : 4240) #pragma warning (disable : 4250) #pragma warning (disable : 4661) // dll interface #pragma warning (disable : 4251) #endif #endif /* end of include guard: COMMON_H_YZ3CIYP */