summaryrefslogtreecommitdiff
path: root/tests/IDL_Test/old_array.idl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/IDL_Test/old_array.idl')
-rw-r--r--tests/IDL_Test/old_array.idl41
1 files changed, 20 insertions, 21 deletions
diff --git a/tests/IDL_Test/old_array.idl b/tests/IDL_Test/old_array.idl
index fdd9b264bf7..a8f3d5f3c21 100644
--- a/tests/IDL_Test/old_array.idl
+++ b/tests/IDL_Test/old_array.idl
@@ -1,20 +1,17 @@
-// $Id$
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/IDL_Test
-//
-// = FILENAME
-// old_array.idl
-//
-// = DESCRIPTION
-// Tests of array IDL constructs
-//
-// = AUTHORS
-// Andy Gokhale <gokhale@dre.vanderbilt.edu>
-//
-// ============================================================================
+//=============================================================================
+/**
+ * @file old_array.idl
+ *
+ * $Id$
+ *
+ * Tests of array IDL constructs
+ *
+ *
+ * @author Andy Gokhale <gokhale@dre.vanderbilt.edu>
+ */
+//=============================================================================
+
#include "simple.idl"
@@ -23,12 +20,14 @@ module OldArray
typedef char str22[22][2];
typedef boolean boolarray[3][40];
+ typedef char char_17[17];
+ typedef char char_10_2[10][2];
struct A
{
long a1;
- char a2[17];
- char a3[10][2];
+ char_17 a2;
+ char_10_2 a3;
};
struct B
@@ -54,15 +53,15 @@ module OldArray
A op (in A a1,
inout A a2,
out A a3);
-
+
str22 op2 (in str22 a1,
inout str22 a2,
out str22 a3);
-
+
A_matrix op4 (in A a1,
inout A a2,
out A a3);
-
+
attribute str22 attribute_array;
};
};