summaryrefslogtreecommitdiff
path: root/examples/DLL/test_dll.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/DLL/test_dll.cpp')
-rw-r--r--examples/DLL/test_dll.cpp80
1 files changed, 0 insertions, 80 deletions
diff --git a/examples/DLL/test_dll.cpp b/examples/DLL/test_dll.cpp
deleted file mode 100644
index cbae44b4e0a..00000000000
--- a/examples/DLL/test_dll.cpp
+++ /dev/null
@@ -1,80 +0,0 @@
-// $Id$
-
-// This program tests out how the various objects can be loaded
-// dynamically and method calls made on them.
-
-#include "Magazine.h"
-#include "ace/DLL.h"
-#include "ace/Auto_Ptr.h"
-
-ACE_RCSID(DLL, test_dll, "$Id$")
-
-typedef Magazine* (*Magazine_Creator) (void);
-
-int
-main (int argc, char *argv[])
-{
- ACE_UNUSED_ARG (argc);
- ACE_UNUSED_ARG (argv);
-
- ACE_DLL dll;
-
- int retval = dll.open ("./" ACE_DLL_PREFIX "Today" ACE_DLL_SUFFIX);
-
- if (retval != 0)
- ACE_ERROR_RETURN ((LM_ERROR,
- "%s",
- dll.error ()),
- -1);
- Magazine_Creator mc;
-
- mc = (Magazine_Creator) dll.symbol ("create_magazine");
-
- if (mc == 0)
- ACE_ERROR_RETURN ((LM_ERROR,
- "%s",
- dll.error ()),
- -1);
- {
- auto_ptr <Magazine> magazine = mc ();
-
- magazine->title ();
- }
-
- dll.close ();
-
- // The other library is now loaded on demand.
-
- retval = dll.open ("./" ACE_DLL_PREFIX "Newsweek" ACE_DLL_SUFFIX);
-
- if (retval != 0)
- ACE_ERROR_RETURN ((LM_ERROR,
- "%s",
- dll.error ()),
- -1);
-
- mc = (Magazine_Creator) dll.symbol ("create_magazine");
-
- if (mc == 0)
- ACE_ERROR_RETURN ((LM_ERROR,
- "%s",
- dll.error ()),
- -1);
- {
- auto_ptr <Magazine> magazine = mc ();
-
- magazine->title ();
- }
-
- dll.close ();
-
- return 0;
-}
-
-#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-template class auto_ptr <Magazine>;
-#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#pragma instantiate auto_ptr <Magazine>
-#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
-
-