summaryrefslogtreecommitdiff
path: root/ACE/examples/Export/dll.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Export/dll.cpp')
-rw-r--r--ACE/examples/Export/dll.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/ACE/examples/Export/dll.cpp b/ACE/examples/Export/dll.cpp
deleted file mode 100644
index 07705db9d59..00000000000
--- a/ACE/examples/Export/dll.cpp
+++ /dev/null
@@ -1,27 +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_STATIC_TEMPLATE_MEMBER_INSTANTIATION)
-template ACE_Singleton<test_class, ACE_Null_Mutex> *ACE_Singleton<test_class, ACE_Null_Mutex>::singleton_;
-#endif /* ACE_HAS_EXPLICIT_STATIC_TEMPLATE_MEMBER_INSTANTIATION */