Merge pull request #2218 from jwillemsen/jwi-pthreadsigmask
[ACE_TAO.git] / TAO / tests / Alt_Mapping / alt_mapping_i.h
blob3c52050a2eb311355a63a7960f2220c3b36a2f68
2 //=============================================================================
3 /**
4 * @file alt_mapping_i.h
6 * @author Jeff Parsons
7 */
8 //=============================================================================
11 #ifndef ALT_MAPPING_I_H
12 #define ALT_MAPPING_I_H
14 #include "alt_mappingS.h"
16 /**
17 * @class Alt_Mapping_i
19 * @brief Alt_Mapping_i
21 * Implementation of the Alt_Mapping_i test suite.
23 class Alt_Mapping_i : public POA_Alt_Mapping
25 public:
26 Alt_Mapping_i (CORBA::ORB_ptr orb);
28 ~Alt_Mapping_i ();
30 virtual std::string
31 test_unbounded_string (const std::string s1,
32 std::string &s2,
33 std::string &s3);
35 virtual Alt_Mapping::StructSeq test_struct_sequence (
36 const Alt_Mapping::StructSeq & s1,
37 Alt_Mapping::StructSeq & s2,
38 Alt_Mapping::StructSeq & s3);
40 void shutdown ();
42 private:
43 CORBA::ORB_var orb_;
46 #endif /* ALT_MAPPING_I_H */