1 /*
2  *
3  *  Copyright (C) 2011, OFFIS e.V.
4  *  All rights reserved.  See COPYRIGHT file for details.
5  *
6  *  This software and supporting documentation were developed by
7  *
8  *    OFFIS e.V.
9  *    R&D Division Health
10  *    Escherweg 2
11  *    D-26121 Oldenburg, Germany
12  *
13  *
14  *  Module:  dcmimgle
15  *
16  *  Author:  Uli Schlachter
17  *
18  *  Purpose: Contains preprocessor definitions
19  *
20  */
21 
22 
23 #ifndef SIDEFINE_H
24 #define SIDEFINE_H
25 
26 #include "dcmtk/config/osconfig.h"
27 
28 #include "dcmtk/ofstd/ofdefine.h"
29 
30 
31 #ifdef dcmdsig_EXPORTS
32 #define DCMTK_DCMSIGN_EXPORT DCMTK_DECL_EXPORT
33 #else
34 #define DCMTK_DCMSIGN_EXPORT DCMTK_DECL_IMPORT
35 #endif
36 
37 
38 #endif
39