/*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef _SIMAPI_H #define _SIMAPI_H #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef HAVE_SYS_TYPES_H #include #endif #ifdef HAVE_INTTYPES_H #include #else #ifdef HAVE_STDINT_H #include #endif #endif #ifdef HAVE_UNISTD_H #include #endif // for Q_CC_foo - macros #include #ifdef Q_CC_MSVC // "conditional expression is constant" (W4) # pragma warning(disable: 4127) // "'identifier' : class 'type' needs to have dll-interface to be used by clients of class 'type2'" (W1) # pragma warning(disable: 4251) // "function' : function not inlined" (W4)4786 # pragma warning(disable: 4710) #endif #ifdef HAVE_GCC_VISIBILITY # define SIM_EXPORT __attribute__ ((visibility("default"))) # define SIM_IMPORT __attribute__ ((visibility("default"))) # define EXPORT_PROC extern "C" __attribute__ ((visibility("default"))) #elif defined(Q_OS_WIN) # define SIM_EXPORT __declspec(dllexport) # define SIM_IMPORT __declspec(dllimport) # define EXPORT_PROC extern "C" __declspec(dllexport) #else # define SIM_EXPORT # define SIM_IMPORT #ifdef __OS2__ # define EXPORT_PROC extern "C" _System #else # define EXPORT_PROC extern "C" #endif #endif #ifdef SIMAPI_EXPORTS // should be set when simapi-lib is build - please add a check for configure # define EXPORT SIM_EXPORT #else # define EXPORT SIM_IMPORT #endif #ifdef Q_CC_MSVC # define DEPRECATED __declspec(deprecated) #elif defined Q_CC_GNU # define DEPRECATED __attribute__ ((deprecated)) #else # define DEPRECATED #endif #ifndef COPY_RESTRICTED # define COPY_RESTRICTED(A) \ private: \ A(const A&); \ A &operator = (const A&); #endif #endif // _SIMAPI_H