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