forked from Slicer/SlicerGitSVNArchive
-
Notifications
You must be signed in to change notification settings - Fork 1
/
qSlicerExport.h.in
32 lines (23 loc) · 966 Bytes
/
qSlicerExport.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*=auto=========================================================================
Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH)
All Rights Reserved.
See COPYRIGHT.txt
or http://www.slicer.org/copyright/copyright.txt for details.
Program: 3D Slicer
=========================================================================auto=*/
// .NAME __@MY_EXPORT_HEADER_PREFIX@Export - manage Windows system differences
// .SECTION Description
// The __@MY_EXPORT_HEADER_PREFIX@Export captures some system differences between Unix
// and Windows operating systems.
#ifndef __@MY_EXPORT_HEADER_PREFIX@Export_h
#define __@MY_EXPORT_HEADER_PREFIX@Export_h
#if defined(WIN32) && !defined(@MY_LIBNAME@_STATIC)
#if defined(@MY_LIBNAME@_EXPORTS)
#define @MY_LIBRARY_EXPORT_DIRECTIVE@ __declspec( dllexport )
#else
#define @MY_LIBRARY_EXPORT_DIRECTIVE@ __declspec( dllimport )
#endif
#else
#define @MY_LIBRARY_EXPORT_DIRECTIVE@
#endif
#endif