summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/interface.idl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-08-21 09:40:14 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-08-21 09:40:14 +0000
commit4580e37fc817d71b858d1baf04e0247ae83920a3 (patch)
treef1754bab6c4ba876c445e70eb58871a1f7c5bb62 /TAO/tests/IDL_Test/interface.idl
parente2ee02af6f6952c3cf9d2e87249e44cc10cf69c0 (diff)
downloadATCD-4580e37fc817d71b858d1baf04e0247ae83920a3.tar.gz
Tue Aug 21 09:36:00 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tests/IDL_Test/interface.idl')
-rw-r--r--TAO/tests/IDL_Test/interface.idl21
1 files changed, 21 insertions, 0 deletions
diff --git a/TAO/tests/IDL_Test/interface.idl b/TAO/tests/IDL_Test/interface.idl
index cfc45eebf7c..4544d6ee202 100644
--- a/TAO/tests/IDL_Test/interface.idl
+++ b/TAO/tests/IDL_Test/interface.idl
@@ -191,3 +191,24 @@ module M
interface A {};
};
+module i1
+{
+ interface if1
+ {
+ string getStr();
+ };
+};
+
+module i2
+{
+ interface if2 : ::i1::if1
+ {
+ string getstr2();
+ };
+
+ interface if3 : ::i2::if2
+ {
+ string getstr3();
+ };
+};
+