Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Param_Test / small_union.h
blobc489d47dafbce78bacd0e963be7d07196c93118c
2 //=============================================================================
3 /**
4 * @file small_union.h
6 * Tests Anys
8 * @author Aniruddha Gokhale
9 */
10 //=============================================================================
13 #ifndef PARAM_TEST_SMALL_UNION_H
14 #define PARAM_TEST_SMALL_UNION_H
16 #include "param_testC.h"
18 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
19 // test Anys
20 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
21 class Test_Small_Union
23 public:
24 /// ctor
25 Test_Small_Union ();
27 /// dtor
28 ~Test_Small_Union ();
30 /// run the SII test
31 int run_sii_test (Param_Test_ptr objref);
33 /// return operation name
34 const char *opname () const;
36 /// set values for parameters
37 int init_parameters (Param_Test_ptr objref);
39 /// reset values for CORBA
40 int reset_parameters ();
42 /// check if results are valid
43 CORBA::Boolean check_validity ();
45 /// check if results are valid. This is used for DII results
46 CORBA::Boolean check_validity (CORBA::Request_ptr req);
48 /// print all the values
49 void print_values ();
51 /// invoke DII request with appropriate exception handling.
52 void dii_req_invoke (CORBA::Request *);
54 private:
55 /// operation name
56 char *opname_;
58 /// Coffee object used to test Small_Union with object.
59 Coffee_var cobj_;
61 /// test counter.
62 static size_t counter;
64 /// in parameter
65 Param_Test::Small_Union in_;
67 /// inout parameter
68 Param_Test::Small_Union inout_;
70 /// out parameter
71 Param_Test::Small_Union_var out_;
73 /// return value
74 Param_Test::Small_Union_var ret_;
77 #endif /* PARAM_TEST_SMALL_UNION_H */