diff --git a/mitkExportMacros.h.in b/mitkExportMacros.h.in index 36cd194923..a083c0f2e3 100644 --- a/mitkExportMacros.h.in +++ b/mitkExportMacros.h.in @@ -1,41 +1,40 @@ -/*========================================================================= +/*=================================================================== -Program: Medical Imaging & Interaction Toolkit -Language: C++ -Date: $Date$ -Version: $Revision$ +The Medical Imaging Interaction Toolkit (MITK) -Copyright (c) German Cancer Research Center, Division of Medical and -Biological Informatics. All rights reserved. -See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. +Copyright (c) German Cancer Research Center, +Division of Medical and Biological Informatics. +All rights reserved. -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. +This software is distributed WITHOUT ANY WARRANTY; without +even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. -=========================================================================*/ +See LICENSE.txt or http://www.mitk.org for details. + +===================================================================*/ #ifndef MITKEXPORTMACROS_H #define MITKEXPORTMACROS_H #cmakedefine VISIBILITY_AVAILABLE /** * Macros for import/export declarations */ #if defined(WIN32) #define MITK_EXPORT __declspec(dllexport) #define MITK_IMPORT __declspec(dllimport) #define MITK_LOCAL #elif defined(VISIBILITY_AVAILABLE) #define MITK_EXPORT __attribute__ ((visibility ("default"))) #define MITK_IMPORT __attribute__ ((visibility ("default"))) #define MITK_LOCAL __attribute__ ((visibility ("hidden"))) #else #define MITK_EXPORT #define MITK_IMPORT #define MITK_LOCAL #endif #endif // MITKEXPORTMACROS_H