Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00026
00027
00028
00029
00030
00031 #ifndef BACI_EXPORT_H
00032 #define BACI_EXPORT_H
00033
00034 #include <acsutil.h>
00035
00036 #if defined (ACS_HAS_STATIC_LIBS) && !defined (BACI_HAS_DLL)
00037 # define BACI_HAS_DLL 0
00038 #endif
00039
00040 #if !defined (BACI_HAS_DLL)
00041 # define BACI_HAS_DLL 1
00042 #endif
00043
00044 #if defined (BACI_HAS_DLL) && (BACI_HAS_DLL == 1)
00045 # if defined (BACI_BUILD_DLL)
00046 # define baci_EXPORT ACS_DLL_EXPORT
00047 # define BACI_SINGLETON_DECLARATION(T) ACE_EXPORT_SINGLETON_DECLARATION (T)
00048 # define BACI_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) ACE_EXPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
00049 # else
00050 # define baci_EXPORT ACS_DLL_IMPORT
00051 # define BACI_SINGLETON_DECLARATION(T) ACE_IMPORT_SINGLETON_DECLARATION (T)
00052 # define BACI_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) ACE_IMPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
00053 # endif
00054 #else
00055 # define baci_EXPORT
00056 # define BACI_SINGLETON_DECLARATION(T)
00057 # define BACI_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
00058 #endif
00059
00060 #endif
00061
00062