Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / DynAny_Test / test_dynstruct.h
blob6b0a5a9099f4097634a1879c09d4cec308135abb
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 ();
23 const char* test_name () const;
25 int run_test ();
27 private:
28 CORBA::ORB_var orb_;
29 char* test_name_;
30 CORBA::ULong error_count_;
31 int debug_;
34 #endif /* TEST_DYNSTRUCT_H */