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