Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / DynAny_Test / test_dynstruct.h
bloba8b41721f7a55d830f938bb9aca70665dca6705e
1 //=============================================================================
2 /**
3 * @file test_dynstruct.h
5 * Header file for class to test DynStruct.
7 * @author Jeff Parsons <parsons@cs.wustl.edu>
8 */
9 //=============================================================================
12 #if !defined (TEST_DYNSTRUCT_H)
13 #define TEST_DYNSTRUCT_H
15 #include "tao/ORB.h"
17 class Test_DynStruct
19 public:
20 Test_DynStruct (CORBA::ORB_var orb, int debug);
21 ~Test_DynStruct (void);
23 const char* test_name (void) const;
25 int run_test (void);
27 private:
28 CORBA::ORB_var orb_;
29 char* test_name_;
30 CORBA::ULong error_count_;
31 int debug_;
34 #endif /* TEST_DYNSTRUCT_H */