summaryrefslogtreecommitdiff
path: root/tests/Param_Test/bd_array_seq.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Param_Test/bd_array_seq.h')
-rw-r--r--tests/Param_Test/bd_array_seq.h65
1 files changed, 31 insertions, 34 deletions
diff --git a/tests/Param_Test/bd_array_seq.h b/tests/Param_Test/bd_array_seq.h
index 5c0c29c5e0f..1cbb42e1129 100644
--- a/tests/Param_Test/bd_array_seq.h
+++ b/tests/Param_Test/bd_array_seq.h
@@ -1,20 +1,17 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Param_Test
-//
-// = FILENAME
-// bd_array_seq.h
-//
-// = DESCRIPTION
-// Tests bounded array sequence
-//
-// = AUTHORS
-// Jeff Parsons <parsons@cs.wustl.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file bd_array_seq.h
+ *
+ * $Id$
+ *
+ * Tests bounded array sequence
+ *
+ *
+ * @author Jeff Parsons <parsons@cs.wustl.edu>
+ */
+//=============================================================================
+
#ifndef PARAM_TEST_BOUNDED_ARRAY_SEQUENCE_H
#define PARAM_TEST_BOUNDED_ARRAY_SEQUENCE_H
@@ -28,60 +25,60 @@
class Test_Bounded_Array_Sequence
{
public:
+ /// ctor
Test_Bounded_Array_Sequence (void);
- // ctor
+ /// dtor
~Test_Bounded_Array_Sequence (void);
- // dtor
+ /// run the SII test
int run_sii_test (Param_Test_ptr objref);
- // run the SII test
+ /// return operation name
const char *opname (void) const;
- // return operation name
+ /// set values for parameters
int init_parameters (Param_Test_ptr objref);
- // set values for parameters
+ /// reset values for CORBA
int reset_parameters (void);
- // reset values for CORBA
+ /// check if results are valid
CORBA::Boolean check_validity (void);
- // check if results are valid
+ /// check if results are valid. This is used for DII results
CORBA::Boolean check_validity (CORBA::Request_ptr req);
- // check if results are valid. This is used for DII results
+ /// print all the values
void print_values (void);
- // print all the values
+ /// invoke DII request with appropriate exception handling.
void dii_req_invoke (CORBA::Request *);
- // invoke DII request with appropriate exception handling.
protected:
+ /// compare
CORBA::Boolean compare (const Param_Test::Bounded_ArraySeq &s1,
const Param_Test::Bounded_ArraySeq &s2);
- // compare
+ /// print individual sequence
void print_sequence (const Param_Test::Bounded_ArraySeq &s);
- // print individual sequence
private:
+ /// operation name
char *opname_;
- // operation name
+ /// in parameter
Param_Test::Bounded_ArraySeq in_;
- // in parameter
// these need memory management
+ /// inout parameter
Param_Test::Bounded_ArraySeq_var inout_;
- // inout parameter
+ /// out parameter
Param_Test::Bounded_ArraySeq_var out_;
- // out parameter
+ /// return value
Param_Test::Bounded_ArraySeq_var ret_;
- // return value
};
#endif /* PARAM_TEST_BOUNDED_ARRAY_SEQUENCE_H */