summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/param_test.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Param_Test/param_test.idl')
-rw-r--r--TAO/tests/Param_Test/param_test.idl28
1 files changed, 3 insertions, 25 deletions
diff --git a/TAO/tests/Param_Test/param_test.idl b/TAO/tests/Param_Test/param_test.idl
index 4ec36807208..de8c4cae069 100644
--- a/TAO/tests/Param_Test/param_test.idl
+++ b/TAO/tests/Param_Test/param_test.idl
@@ -10,7 +10,7 @@
//
// = DESCRIPTION
// This IDL description is used to test all the parameter passing modes (in,
-// inout, out, and return) for a number of IDL data types. The goal is to
+// inout, out, a0nd return) for a number of IDL data types. The goal is to
// verify the correctness of the generated stubs and skeletons, and the
// the marshaling engine of TAO.
//
@@ -147,8 +147,8 @@ interface Param_Test
typedef sequence<any> AnySeq;
AnySeq test_anyseq (in AnySeq s1,
- inout AnySeq s2,
- out AnySeq s3);
+ inout AnySeq s2,
+ out AnySeq s3);
/* typedef sequence<any, 32> Bounded_AnySeq;
Bounded_AnySeq test_bounded_anyseq (in Bounded_AnySeq s1,
@@ -266,28 +266,6 @@ interface Param_Test
inout Big_Union u2,
out Big_Union u3);
- // The following two structs are used to help compose
- // a complex Any for the test function below.
- struct level4
- {
- string level5_string;
-
- any level5_any;
- };
-
- struct level8
- {
- string level9_string;
-
- boolean level9_boolean;
-
- short level9_short;
- };
-
- any test_complex_any (in any ca1,
- inout any ca2,
- out any ca3);
-
// multidimensional arrays (fixed). The following will give rise to a 3
// dimensional array. The following will define a 3-dimensional array of size
// DIM1 X DIM2 X DIM3