summaryrefslogtreecommitdiff
path: root/TAO/tao/TAO_Export.h
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-08-06 20:51:14 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-08-06 20:51:14 +0000
commitc7c6b71bed36e418d5044793fb8ebd77a0f940a2 (patch)
tree217066bb25f7612f656d4c2fa87b97787945100c /TAO/tao/TAO_Export.h
parent00cebeb2c6093534033307578afc1e38353f88c9 (diff)
downloadATCD-c7c6b71bed36e418d5044793fb8ebd77a0f940a2.tar.gz
ChangeLogTag:Sun Aug 06 16:46:31 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tao/TAO_Export.h')
-rw-r--r--TAO/tao/TAO_Export.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/TAO/tao/TAO_Export.h b/TAO/tao/TAO_Export.h
new file mode 100644
index 00000000000..51fd5c981e2
--- /dev/null
+++ b/TAO/tao/TAO_Export.h
@@ -0,0 +1,40 @@
+// -*- C++ -*-
+// $Id$
+// Definition for Win32 Export directives.
+// This file is generated automatically by
+// generate_export_file.pl
+// ------------------------------
+#ifndef TAO_EXPORT_H
+#define TAO_EXPORT_H
+
+#include "ace/config-all.h"
+
+#if !defined (TAO_HAS_DLL)
+#define TAO_HAS_DLL 1
+#endif /* ! TAO_HAS_DLL */
+
+#if defined (TAO_HAS_DLL)
+# if (TAO_HAS_DLL == 1)
+# if defined (TAO_BUILD_DLL)
+# define TAO_Export ACE_Proper_Export_Flag
+# define TAO_SINGLETON_DECLARATION(T) ACE_EXPORT_SINGLETON_DECLARATION (T)
+# define TAO_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) ACE_EXPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
+# else
+# define TAO_Export ACE_Proper_Import_Flag
+# define TAO_SINGLETON_DECLARATION(T) ACE_IMPORT_SINGLETON_DECLARATION (T)
+# define TAO_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK) ACE_IMPORT_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
+# endif /* TAO_BUILD_DLL */
+# else
+# define TAO_Export
+# define TAO_SINGLETON_DECLARATION(T)
+# define TAO_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
+# endif /* ! TAO_HAS_DLL == 1 */
+#else
+# define TAO_Export
+# define TAO_SINGLETON_DECLARATION(T)
+# define TAO_SINGLETON_DECLARE(SINGLETON_TYPE, CLASS, LOCK)
+#endif /* TAO_HAS_DLL */
+
+#endif /* TAO_EXPORT_H */
+
+// End of auto generated file.