123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /*
- * Copyright 2010 SRI International
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * 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. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef OPEN_KARTO_MACROS_H
- #define OPEN_KARTO_MACROS_H
- ////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////
- /**
- * Karto defines for handling deprecated code
- */
- #ifndef KARTO_DEPRECATED
- # if defined(__GNUC__) && (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__>=1))
- # define KARTO_DEPRECATED __attribute__((deprecated))
- # elif defined(__INTEL) || defined(_MSC_VER)
- # define KARTO_DEPRECATED __declspec(deprecated)
- # else
- # define KARTO_DEPRECATED
- # endif
- #endif
- ////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////
- /**
- * Karto defines for windows dynamic build
- */
- #if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || defined( __BCPLUSPLUS__) || defined( __MWERKS__)
- # if defined( _LIB ) || defined( KARTO_STATIC ) || defined( STATIC_BUILD )
- # define KARTO_EXPORT
- # else
- # ifdef KARTO_DYNAMIC
- # define KARTO_EXPORT __declspec(dllexport)
- # else
- # define KARTO_EXPORT __declspec(dllimport)
- # endif // KARTO_DYNAMIC
- # endif
- #else
- # define KARTO_EXPORT
- #endif
- ////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////
- /**
- * Helper defines for std iterator loops
- */
- #define forEach( listtype, list ) \
- for ( listtype::iterator iter = (list)->begin(); iter != (list)->end(); ++iter )
- #define forEachAs( listtype, list, iter ) \
- for ( listtype::iterator iter = (list)->begin(); iter != (list)->end(); ++iter )
- #define const_forEach( listtype, list ) \
- for ( listtype::const_iterator iter = (list)->begin(); iter != (list)->end(); ++iter )
- #define const_forEachAs( listtype, list, iter ) \
- for ( listtype::const_iterator iter = (list)->begin(); iter != (list)->end(); ++iter )
- #define forEachR( listtype, list ) \
- for ( listtype::reverse_iterator iter = (list)->rbegin(); iter != (list)->rend(); ++iter )
- #define const_forEachR( listtype, list ) \
- for ( listtype::const_reverse_iterator iter = (list)->rbegin(); iter != (list)->rend(); ++iter )
- ////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////////////
- /**
- * Disable annoying compiler warnings
- */
- #if defined(__INTEL) || defined(_MSC_VER)
- // Disable the warning: 'identifier' : class 'type' needs to have dll-interface to be used by clients of class 'type2'
- #pragma warning(disable:4251)
- #endif
- #ifdef __INTEL_COMPILER
- // Disable the warning: conditional expression is constant
- #pragma warning(disable:4127)
- // Disable the warning: 'identifier' : unreferenced formal parameter
- #pragma warning(disable:4100)
- // remark #383: value copied to temporary, reference to temporary used
- #pragma warning(disable:383)
- // remark #981: operands are evaluated in unspecified order
- // disabled -> completely pointless if the functions do not have side effects
- #pragma warning(disable:981)
- // remark #1418: external function definition with no prior declaration
- #pragma warning(disable:1418)
- // remark #1572: floating-point equality and inequality comparisons are unreliable
- // disabled -> everyone knows it, the parser passes this problem deliberately to the user
- #pragma warning(disable:1572)
- // remark #10121:
- #pragma warning(disable:10121)
- #endif // __INTEL_COMPILER
- #endif // OPEN_KARTO_MACROS_H
|