summaryrefslogtreecommitdiff
path: root/ACE/tests/DLL_Test_Parent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/DLL_Test_Parent.cpp')
-rw-r--r--ACE/tests/DLL_Test_Parent.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/ACE/tests/DLL_Test_Parent.cpp b/ACE/tests/DLL_Test_Parent.cpp
new file mode 100644
index 00000000000..0664f5a7c92
--- /dev/null
+++ b/ACE/tests/DLL_Test_Parent.cpp
@@ -0,0 +1,19 @@
+// $Id$
+
+#include "DLL_Test_Parent.h"
+#include "ace/Log_Msg.h"
+
+ACE_RCSID (tests,
+ DLL_Test_Parent,
+ "$Id$")
+
+
+Parent::~Parent (void)
+{
+}
+
+void
+Parent::test (void)
+{
+ ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("parent called\n")));
+}