2 //=============================================================================
6 * Tests fixed size structs
8 * @author Aniruddha Gokhale
10 //=============================================================================
13 #ifndef PARAM_TEST_FIXED_STRUCT_H
14 #define PARAM_TEST_FIXED_STRUCT_H
16 #include "param_testC.h"
18 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
20 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
21 class Test_Fixed_Struct
28 ~Test_Fixed_Struct ();
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
51 /// invoke DII request with appropriate exception handling.
52 void dii_req_invoke (CORBA::Request
*);
59 Param_Test::Fixed_Struct in_
;
62 Param_Test::Fixed_Struct inout_
;
65 Param_Test::Fixed_Struct out_
;
68 Param_Test::Fixed_Struct ret_
;
71 #endif /* PARAM_TEST_FIXED_STRUCT_H */