//============================================================================= // // OpenFlipper // Copyright (C) 2008 by Computer Graphics Group, RWTH Aachen // www.openflipper.org // //----------------------------------------------------------------------------- // // License // // OpenFlipper 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. // // OpenFlipper 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 OpenFlipper. If not, see . // //----------------------------------------------------------------------------- // // $Revision$ // $Author$ // $Date$ // //============================================================================= //============================================================================= // // Global defines for OpenFlipper // //============================================================================= /** * \file GlobalDefines.hh * This File contains the required defines for the OpenFlipper Framework */ #ifndef GLOBALDEFINES_HH #define GLOBALDEFINES_HH //== DEEFINES ================================================================= /** Force static casts for Properties in OpenMesh. * Cross Plugin dynamic casts are not possible due to locally defined symbols */ #define OM_FORCE_STATIC_CAST /** Enable openmp where possible */ #define USE_OPENMP #ifdef WIN32 #ifndef DLLEXPORT #define DLLEXPORT __declspec(dllexport) #endif #else #ifndef DLLEXPORT #define DLLEXPORT #endif #endif //============================================================================= #endif // GLOBALDEFINES_HH defined //=============================================================================