summaryrefslogtreecommitdiff
path: root/tests/Alt_Mapping/ub_str_seq.h
blob: 584664869b17a168b3d683c86c27c68f9bc4e33a (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/Param_Test
//
// = FILENAME
//    ub_str_seq.h
//
// = DESCRIPTION
//     Tests sequences of strings
//
// = AUTHORS
//      Aniruddha Gokhale
//
// ============================================================================

#ifndef PARAM_TEST_UNBOUNDED_STRING_SEQUENCE_H
#define PARAM_TEST_UNBOUNDED_STRING_SEQUENCE_H

#include "alt_mappingC.h"

// =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
//           test typedefed sequences (in our case, sequences of strings)
// =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

class Test_String_Sequence
{
public:
  Test_String_Sequence (void);

  ~Test_String_Sequence (void);

  int run_sii_test (Alt_Mapping_ptr objref);

  const char *opname (void) const;

  int init_parameters (Alt_Mapping_ptr objref);

  int reset_parameters (void);

  CORBA::Boolean check_validity (void);

  void print_values (void);

private:
  char *opname_;

  CORBA::StringSeq in_;

  CORBA::StringSeq inout_;

  CORBA::StringSeq out_;

  CORBA::StringSeq ret_;
};

#endif /* PARAM_TEST_UNBOUNDED_STRING_SEQUENCE_H */