summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/Simple_Object.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/Simple_Object.idl')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/Simple_Object.idl16
1 files changed, 16 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/Simple_Object.idl b/TAO/orbsvcs/tests/ImplRepo/Simple_Object.idl
new file mode 100644
index 00000000000..34fffdef395
--- /dev/null
+++ b/TAO/orbsvcs/tests/ImplRepo/Simple_Object.idl
@@ -0,0 +1,16 @@
+// $Id$
+
+interface simple_object
+ // = TITLE
+ // Defines an interface that encapsulates operations that cube
+ // numbers.
+ //
+ // = DESCRIPTION
+ // This interface encapsulates an operation that cubes a long.
+{
+ long simple_method (in long l);
+ // cube a long
+
+ void shutdown ();
+ // shutdown the application.
+};