Scopira  20080306
export.h
1 
2 /*
3  * Copyright (c) 2005 National Research Council
4  *
5  * All rights reserved.
6  *
7  * This material is confidential and proprietary information of
8  * National Research Council Canada ("Confidential Information").
9  * This Confidential Information may only be used and reproduced
10  * in accordance with the terms of the license agreement.
11  *
12  */
13 
14 #ifndef __INCLUDED__SCOPIRA_TOOL_EXPORT__
15 #define __INCLUDED__SCOPIRA_TOOL_EXPORT__
16 
17 #include <scopira/tool/platform.h>
18 // where SCOPIRA below would be replaced with the "dll" that this file is part of (SCOPIRA, SCOPIRAUI, PAKIT, etc)
19 #if defined(scopira_STATIC)
20 #define SCOPIRA_EXPORT
21 #elif defined(SCOPIRA_DLL) || defined(scopira_EXPORTS)
22 #define SCOPIRA_EXPORT PLATFORM_INDLL
23 #else
24 #define SCOPIRA_EXPORT PLATFORM_OUTDLL
25 #endif
26 
27 #endif
28