Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / DynAny_Test / test_dynunion.h
blobe359caac22e99e744e6ec02e5ce8af9324cda7d9
1 //=============================================================================
2 /**
3 * @file test_dynunion.h
5 * Header file for class to test DynUnion.
7 * @author Jeff Parsons <parsons@cs.wustl.edu>
8 */
9 //=============================================================================
12 #if !defined (TEST_DYNUNION_H)
13 #define TEST_DYNUNION_H
15 #include "tao/ORB.h"
17 class Test_DynUnion
19 public:
20 Test_DynUnion (CORBA::ORB_var orb, int debug);
21 ~Test_DynUnion ();
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_DYNUNION_H */