summaryrefslogtreecommitdiff
path: root/modules/TAO/tests/Alt_Mapping/alt_mapping_i.h
blob: 5360f32913776e8b3a6d3d8476d1a81258ad67df (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
// $Id$

// ============================================================================
//
// = FILENAME
//    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 : public POA_Alt_Mapping
{
  // = TITLE
  //    Alt_Mapping_i
  // = DESCRIPTION
  //    Implementation of the Alt_Mapping_i test suite.
public:
  Alt_Mapping_i (CORBA::ORB_ptr orb);

  ~Alt_Mapping_i (void);

  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 (void);

private:
  CORBA::ORB_var orb_;
};

#endif /* ALT_MAPPING_I_H */