summaryrefslogtreecommitdiff
path: root/tests/DLL_Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/DLL_Test.h')
-rw-r--r--tests/DLL_Test.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/DLL_Test.h b/tests/DLL_Test.h
deleted file mode 100644
index d19a488f8d9..00000000000
--- a/tests/DLL_Test.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// DLL_Test.h
-//
-// = DESCRIPTION
-// This file has the class definitions needed for template generation in
-// DLL_Test.cpp. They have to be in a separate file so AIX xlC can
-// find them at auto-instantiate time.
-//
-// = AUTHOR
-// Kirthika Parameswaran <kirthika@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef ACE_TESTS_DLL_TEST_H
-#define ACE_TESTS_DLL_TEST_H
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "ace/Log_Msg.h"
-
-class Hello
-{
- // = TITLE
- // The Hello class in the dynamically linkable library.
- //
- // = DESCRIPTION
- // This class is used in this example to show how a library can
- // be loaded on demand and its methods called on getting the
- // symbols from the library.
-public:
-
- void say_hello (void)
- {
- ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT ("Hello\n")));
- }
-
- void say_next (void)
- {
- ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT ("How are you?\n")));
- }
-};
-
-#endif /* ACE_TESTS_MAP_TEST_H */