00001 /*========================================================================= 00002 00003 Program: Medical Imaging & Interaction Toolkit 00004 Language: C++ 00005 Date: $Date: 2009-05-19 21:14:21 +0200 (Di, 19 Mai 2009) $ 00006 Version: $Revision: 17326 $ 00007 00008 Copyright (c) German Cancer Research Center, Division of Medical and 00009 Biological Informatics. All rights reserved. 00010 See MITKCopyright.txt or https://www.mitk.org/copyright.html for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 #ifndef MitkIGTUI_EXPORTS_H 00018 #define MitkIGTUI_EXPORTS_H 00019 #if defined(WIN32) 00020 #ifdef mitkIGTUI_EXPORTS 00021 #define MitkIGTUI_EXPORT __declspec(dllexport) 00022 #else 00023 #define MitkIGTUI_EXPORT __declspec(dllimport) 00024 #endif 00025 #else 00026 #define MitkIGTUI_EXPORT 00027 #endif 00028 #ifndef _CMAKE_MODULENAME 00029 #ifdef mitkIGTUI_EXPORTS 00030 #define _CMAKE_MODULENAME "MitkIGTUI" 00031 #endif 00032 #endif 00033 #endif 00034 00035