summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/idl_specs/module.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/idl_specs/module.idl')
-rw-r--r--TAO/TAO_IDL/idl_specs/module.idl22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/idl_specs/module.idl b/TAO/TAO_IDL/idl_specs/module.idl
new file mode 100644
index 00000000000..d40f45963a1
--- /dev/null
+++ b/TAO/TAO_IDL/idl_specs/module.idl
@@ -0,0 +1,22 @@
+// $Id$
+
+module mod1
+{
+ module mod2
+ {
+ interface ex1
+ {
+ attribute long l1;
+ readonly attribute long l2;
+
+ long m1(in long a);
+ };
+
+ interface ex2 : ex1
+ {
+ attribute long l3;
+
+ long m2(in long a, out long b);
+ };
+ };
+};