summaryrefslogtreecommitdiff
path: root/TAO/tests/DynAny_Test/test_dynunion.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/DynAny_Test/test_dynunion.h')
-rw-r--r--TAO/tests/DynAny_Test/test_dynunion.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/TAO/tests/DynAny_Test/test_dynunion.h b/TAO/tests/DynAny_Test/test_dynunion.h
new file mode 100644
index 00000000000..f790e0b6f57
--- /dev/null
+++ b/TAO/tests/DynAny_Test/test_dynunion.h
@@ -0,0 +1,38 @@
+//=============================================================================
+/**
+ * @file test_dynunion.h
+ *
+ * $Id$
+ *
+ * Header file for class to test DynUnion.
+ *
+ *
+ * @author Jeff Parsons <parsons@cs.wustl.edu>
+ */
+//=============================================================================
+
+
+#if !defined (TEST_DYNUNION_H)
+#define TEST_DYNUNION_H
+
+#include "tao/ORB.h"
+
+class Test_DynUnion
+{
+public:
+ Test_DynUnion (CORBA::ORB_var orb, int debug);
+ ~Test_DynUnion (void);
+
+ const char* test_name (void) const;
+
+ int run_test (void);
+
+private:
+ CORBA::ORB_var orb_;
+ char* test_name_;
+ CORBA::ULong error_count_;
+ int debug_;
+};
+
+#endif /* TEST_DYNUNION_H */
+