diff options
Diffstat (limited to 'ACE/apps/JAWS2/JAWS/Export.h')
-rw-r--r-- | ACE/apps/JAWS2/JAWS/Export.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/ACE/apps/JAWS2/JAWS/Export.h b/ACE/apps/JAWS2/JAWS/Export.h new file mode 100644 index 00000000000..432b23f6984 --- /dev/null +++ b/ACE/apps/JAWS2/JAWS/Export.h @@ -0,0 +1,38 @@ +// $Id$ + +// Definition for Win32 Export directives. +// This file is generated automatically by +// ${TAO_ROOT}/TAO_IDL/GenExportH.BAT +// ------------------------------ +#ifndef JAWS_EXPORT_H +#define JAWS_EXPORT_H + +#include "ace/config-all.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +#if defined (JAWS_HAS_DLL) +# if (JAWS_HAS_DLL == 1) +# if defined (JAWS_BUILD_DLL) +# define JAWS_Export ACE_Proper_Export_Flag +# define JAWS_SINGLETON_DECLARATION(T) \ + ACE_EXPORT_SINGLETON_DECLARATION (T) +# else +# define JAWS_Export ACE_Proper_Import_Flag +# define JAWS_SINGLETON_DECLARATION(T) \ + ACE_IMPORT_SINGLETON_DECLARATION (T) +# endif /* JAWS_BUILD_DLL */ +# else +# define JAWS_Export +# define JAWS_SINGLETON_DECLARATION(T) +# endif /* ! JAWS_HAS_DLL == 1 */ +#else +# define JAWS_Export +# define JAWS_SINGLETON_DECLARATION(T) +#endif /* JAWS_HAS_DLL */ + +#endif /* JAWS_EXPORT_H */ + // End of auto generated file. + |