summaryrefslogtreecommitdiff
path: root/TAO/tests/Alt_Mapping/alt_mapping_i.h
blob: 3c52050a2eb311355a63a7960f2220c3b36a2f68 (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

//=============================================================================
/**
 *  @file    alt_mapping_i.h
 *
 *  @author Jeff Parsons
 */
//=============================================================================


#ifndef ALT_MAPPING_I_H
#define ALT_MAPPING_I_H

#include "alt_mappingS.h"

/**
 * @class Alt_Mapping_i
 *
 * @brief Alt_Mapping_i
 *
 * Implementation of the Alt_Mapping_i test suite.
 */
class Alt_Mapping_i : public POA_Alt_Mapping
{
public:
  Alt_Mapping_i (CORBA::ORB_ptr orb);

  ~Alt_Mapping_i ();

  virtual std::string
  test_unbounded_string (const std::string s1,
                         std::string &s2,
                         std::string &s3);

  virtual Alt_Mapping::StructSeq test_struct_sequence (
    const Alt_Mapping::StructSeq & s1,
    Alt_Mapping::StructSeq & s2,
    Alt_Mapping::StructSeq & s3);

  void shutdown ();

private:
  CORBA::ORB_var orb_;
};

#endif /* ALT_MAPPING_I_H */