Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / tests / DynAny_Test / test_dynenum.h
bloba4e671991cd9adaabde2b38773b7f7215fd0a549
1 //=============================================================================
2 /**
3 * @file test_dynenum.h
5 * Header file for class to test DynEnum.
7 * @author Jeff Parsons <parsons@cs.wustl.edu>
8 */
9 //=============================================================================
12 #if !defined (TEST_DYNENUM_H)
13 #define TEST_DYNENUM_H
15 #include "tao/ORB.h"
17 class Test_DynEnum
19 public:
20 Test_DynEnum (CORBA::ORB_var orb, int debug);
21 ~Test_DynEnum ();
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_DYNENUM_H */