QtDcm: A Qt based C++ library for Dicom communication
Main Page
Classes
Files
File List
File Members
src
qtdcm
src
qtdcmExports.h
Go to the documentation of this file.
1
#ifndef QTDCMEXPORT_H
2
#define QTDCMEXPORT_H
3
4
#ifdef WIN32
5
#ifdef qtdcm_EXPORTS
6
#define QTDCM_EXPORT __declspec(dllexport)
7
#else
8
#define QTDCM_EXPORT __declspec(dllimport)
9
#endif
10
#else
11
#define QTDCM_EXPORT
12
#endif
13
14
#endif
15