blob: 2b74a8ce22db0a5500e79c844ef8b8873c204427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
//=============================================================================
/**
* @file test_dynsequence.h
*
* $Id$
*
* Header file for class to test DynSequence.
*
*
* @author Jeff Parsons <parsons@cs.wustl.edu>
*/
//=============================================================================
#if !defined (TEST_DYNSEQUENCE_H)
#define TEST_DYNSEQUENCE_H
#include "tao/ORB.h"
class Test_DynSequence
{
public:
Test_DynSequence (CORBA::ORB_var orb, int debug);
~Test_DynSequence (void);
const char* test_name (void) const;
int run_test (void);
private:
CORBA::ORB_var orb_;
char* test_name_;
CORBA::ULong error_count_;
int debug_;
};
#endif /* TEST_DYNSEQUENCE_H */
|