summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tests/IDL3/Homes/Inheritance/Inheritance.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tests/IDL3/Homes/Inheritance/Inheritance.idl')
-rw-r--r--TAO/CIAO/tests/IDL3/Homes/Inheritance/Inheritance.idl14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/CIAO/tests/IDL3/Homes/Inheritance/Inheritance.idl b/TAO/CIAO/tests/IDL3/Homes/Inheritance/Inheritance.idl
index e1bce50fc2f..dca1c828c20 100644
--- a/TAO/CIAO/tests/IDL3/Homes/Inheritance/Inheritance.idl
+++ b/TAO/CIAO/tests/IDL3/Homes/Inheritance/Inheritance.idl
@@ -2,7 +2,7 @@
/**
* @file Inheritance.idl
* @author Will Otte <wotte@dre.vanderbilt.edu>
- *
+ *
* Tests the compilation of Home inheritance.
*/
@@ -10,24 +10,24 @@
module HomeInheritance
{
- interface foo_interface
+ interface foo_interface
{
};
-
+
component Foo supports foo_interface
{
};
-
+
home FooHome manages Foo
{
};
-
+
component Bar
{
};
-
+
home BarHome : FooHome manages Bar
{
};
-
+
};