summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/OBV/Simple/OBV.idl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/OBV/Simple/OBV.idl')
-rw-r--r--ACE/TAO/tests/OBV/Simple/OBV.idl16
1 files changed, 16 insertions, 0 deletions
diff --git a/ACE/TAO/tests/OBV/Simple/OBV.idl b/ACE/TAO/tests/OBV/Simple/OBV.idl
new file mode 100644
index 00000000000..f909dc25975
--- /dev/null
+++ b/ACE/TAO/tests/OBV/Simple/OBV.idl
@@ -0,0 +1,16 @@
+// $Id$
+
+valuetype Event
+{
+ void do_print ();
+ public long value_;
+};
+
+interface Checkpoint
+{
+ void put_event (in Event e);
+ // This operation will shutdown the server.
+ oneway void shutdown ();
+};
+
+