odil
C++11libraryfortheDICOMstandard
odil.h
1 #pragma once
2 
3 #ifdef WIN32
4 # define EXPORT_DYNAMIC_LIBRARY __declspec(dllexport)
5 # define IMPORT_DYNAMIC_LIBRARY __declspec(dllimport)
6 #else // WIN32
7 # define EXPORT_DYNAMIC_LIBRARY
8 # define IMPORT_DYNAMIC_LIBRARY
9 #endif // WIN32
10 
11 #ifdef BUILDING_ODIL
12 # define ODIL_API EXPORT_DYNAMIC_LIBRARY
13 #else // BUILDING_ODIL
14 # define ODIL_API IMPORT_DYNAMIC_LIBRARY
15 #endif // BUILDING_ODIL