Continued changes from peer review
[ACE_TAO.git] / TAO / tests / Param_Test / bd_long_seq.h
blob525104c9351a2a2d5ec66e406d7180dfb5a8eb9c
2 //=============================================================================
3 /**
4 * @file bd_long_seq.h
6 * Tests bounded long sequences
8 * @author Aniruddha Gokhale
9 */
10 //=============================================================================
13 #ifndef PARAM_TEST_BOUNDED_LONG_SEQUENCE_H
14 #define PARAM_TEST_BOUNDED_LONG_SEQUENCE_H
16 #include "param_testC.h"
18 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
19 // test bounded sequences of longs
20 // =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
22 class Test_Bounded_Long_Sequence
24 public:
25 /// ctor
26 Test_Bounded_Long_Sequence (void);
28 /// dtor
29 ~Test_Bounded_Long_Sequence (void);
31 /// run the SII test
32 int run_sii_test (Param_Test_ptr objref);
34 /// return operation name
35 const char *opname (void) const;
37 /// set values for parameters
38 int init_parameters (Param_Test_ptr objref);
40 /// reset values for CORBA
41 int reset_parameters (void);
43 /// check if results are valid
44 CORBA::Boolean check_validity (void);
46 /// check if results are valid. This is used for DII results
47 CORBA::Boolean check_validity (CORBA::Request_ptr req);
49 /// print all the values
50 void print_values (void);
52 /// invoke DII request with appropriate exception handling.
53 void dii_req_invoke (CORBA::Request *);
55 private:
56 /// operation name
57 char *opname_;
59 /// in parameter
60 Param_Test::Bounded_Long_Seq_var in_;
62 /// inout parameter
63 Param_Test::Bounded_Long_Seq_var inout_;
65 /// out parameter
66 Param_Test::Bounded_Long_Seq_var out_;
68 /// return value
69 Param_Test::Bounded_Long_Seq_var ret_;
72 #endif /* PARAM_TEST_BOUNDED_LONG_SEQUENCE_H */