summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/DynAny_Test/test_dynsequence.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/DynAny_Test/test_dynsequence.h')
-rw-r--r--trunk/TAO/tests/DynAny_Test/test_dynsequence.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/trunk/TAO/tests/DynAny_Test/test_dynsequence.h b/trunk/TAO/tests/DynAny_Test/test_dynsequence.h
new file mode 100644
index 00000000000..2b74a8ce22d
--- /dev/null
+++ b/trunk/TAO/tests/DynAny_Test/test_dynsequence.h
@@ -0,0 +1,38 @@
+//=============================================================================
+/**
+ * @file test_dynsequence.h
+ *
+ * $Id$
+ *
+ * Header file for class to test DynSequence.
+ *
+ *
+ * @author Jeff Parsons <parsons@cs.wustl.edu>
+ */
+//=============================================================================
+
+
+#if !defined (TEST_DYNSEQUENCE_H)
+#define TEST_DYNSEQUENCE_H
+
+#include "tao/ORB.h"
+
+class Test_DynSequence
+{
+public:
+ Test_DynSequence (CORBA::ORB_var orb, int debug);
+ ~Test_DynSequence (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_DYNSEQUENCE_H */
+