summaryrefslogtreecommitdiff
path: root/examples/Export/dll.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Export/dll.cpp')
-rw-r--r--examples/Export/dll.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/examples/Export/dll.cpp b/examples/Export/dll.cpp
deleted file mode 100644
index 3d72333aef8..00000000000
--- a/examples/Export/dll.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-// $Id$
-#include "dll.h"
-
-int test_variable = 0;
-
-int
-test_function ()
-{
- test_variable = RETVAL;
- return RETVAL;
-}
-
-int
-test_class::method ()
-{
- return RETVAL;
-}
-
-test_class *
-get_dll_singleton ()
-{
- return TEST_SINGLETON::instance ();
-}
-
-#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-template class ACE_Singleton<test_class,ACE_Null_Mutex>;
-#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#pragma instantiate ACE_Singleton<test_class,ACE_Null_Mutex>
-#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */