summaryrefslogtreecommitdiff
path: root/DAnCE/tools/Artifact_Installation/Installation_Repository_Manager_export.h
blob: 3ae8e8074c93b98b4b10400a89971f9fed4a3282 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// -*- C++ -*-
// Definition for Win32 Export directives.
// ------------------------------
#ifndef INSTALLATION_REPOSITORY_MANAGER_EXPORT_H
#define INSTALLATION_REPOSITORY_MANAGER_EXPORT_H

#include "ace/config-all.h"

#if defined (ACE_AS_STATIC_LIBS) && !defined (INSTALLATION_REPOSITORY_MANAGER_HAS_DLL)
#  define INSTALLATION_REPOSITORY_MANAGER_HAS_DLL 0
#endif /* ACE_AS_STATIC_LIBS && INSTALLATION_REPOSITORY_MANAGER_HAS_DLL */

#if !defined (INSTALLATION_REPOSITORY_MANAGER_HAS_DLL)
#  define INSTALLATION_REPOSITORY_MANAGER_HAS_DLL 1
#endif /* ! INSTALLATION_REPOSITORY_MANAGER_HAS_DLL */

#if defined (INSTALLATION_REPOSITORY_MANAGER_HAS_DLL) && (INSTALLATION_REPOSITORY_MANAGER_HAS_DLL == 1)
#  if defined (INSTALLATION_REPOSITORY_MANAGER_BUILD_DLL)
#    define Installation_Repository_Manager_Export ACE_Proper_Export_Flag
#    define INSTALLATION_REPOSITORY_MANAGER_SINGLETON_DECLARATION(T) ACE_EXPORT_SINGLETON_DECLARATION (T)
#    define INSTALLATION_REPOSITORY_MANAGER_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) ACE_EXPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
#  else /* INSTALLATION_REPOSITORY_MANAGER_BUILD_DLL */
#    define Installation_Repository_Manager_Export ACE_Proper_Import_Flag
#    define INSTALLATION_REPOSITORY_MANAGER_SINGLETON_DECLARATION(T) ACE_IMPORT_SINGLETON_DECLARATION (T)
#    define INSTALLATION_REPOSITORY_MANAGER_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) ACE_IMPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
#  endif /* INSTALLATION_REPOSITORY_MANAGER_BUILD_DLL */
#else /* INSTALLATION_REPOSITORY_MANAGER_HAS_DLL == 1 */
#  define Installation_Repository_Manager_Export
#  define INSTALLATION_REPOSITORY_MANAGER_SINGLETON_DECLARATION(T)
#  define INSTALLATION_REPOSITORY_MANAGER_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
#endif /* INSTALLATION_REPOSITORY_MANAGER_HAS_DLL == 1 */

// Set INSTALLATION_REPOSITORY_MANAGER_NTRACE = 0 to turn on library specific tracing even if
// tracing is turned off for ACE.
#if !defined (INSTALLATION_REPOSITORY_MANAGER_NTRACE)
#  if (ACE_NTRACE == 1)
#    define INSTALLATION_REPOSITORY_MANAGER_NTRACE 1
#  else /* (ACE_NTRACE == 1) */
#    define INSTALLATION_REPOSITORY_MANAGER_NTRACE 0
#  endif /* (ACE_NTRACE == 1) */
#endif /* !INSTALLATION_REPOSITORY_MANAGER_NTRACE */

#if (INSTALLATION_REPOSITORY_MANAGER_NTRACE == 1)
#  define INSTALLATION_REPOSITORY_MANAGER_TRACE(X)
#else /* (INSTALLATION_REPOSITORY_MANAGER_NTRACE == 1) */
#  if !defined (ACE_HAS_TRACE)
#    define ACE_HAS_TRACE
#  endif /* ACE_HAS_TRACE */
#  define INSTALLATION_REPOSITORY_MANAGER_TRACE(X) ACE_TRACE_IMPL(X)
#  include "ace/Trace.h"
#endif /* (INSTALLATION_REPOSITORY_MANAGER_NTRACE == 1) */

#endif /* INSTALLATION_REPOSITORY_MANAGER_EXPORT_H */

// End of auto generated file.