summaryrefslogtreecommitdiff
path: root/ACE/tests/DLL_Test_Parent.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/DLL_Test_Parent.h')
-rw-r--r--ACE/tests/DLL_Test_Parent.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/ACE/tests/DLL_Test_Parent.h b/ACE/tests/DLL_Test_Parent.h
new file mode 100644
index 00000000000..3046dad48d4
--- /dev/null
+++ b/ACE/tests/DLL_Test_Parent.h
@@ -0,0 +1,34 @@
+// -*- C++ -*-
+
+// ================================================================
+/**
+ * @file DLL_Test_Parent.h
+ *
+ * $Id$
+ *
+ * @author Kirthika Parameswaran <kirthika@cs.wustl.edu>
+ * @author Ossama Othman <ossama@dre.vanderbilt.edu>
+ */
+// ================================================================
+
+#ifndef ACE_TESTS_DLL_TEST_PARENT_H
+#define ACE_TESTS_DLL_TEST_PARENT_H
+
+#include "DLL_Test_Parent_Export.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+
+class DLL_Test_Parent_Export Parent
+{
+public:
+
+ virtual ~Parent (void);
+
+ virtual void test (void);
+
+};
+
+#endif /* ACE_TESTS_DLL_TEST_PARENT_H */