summaryrefslogtreecommitdiff
path: root/TAO/examples/Callback_Quoter/Consumer.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Callback_Quoter/Consumer.idl')
-rw-r--r--TAO/examples/Callback_Quoter/Consumer.idl43
1 files changed, 0 insertions, 43 deletions
diff --git a/TAO/examples/Callback_Quoter/Consumer.idl b/TAO/examples/Callback_Quoter/Consumer.idl
deleted file mode 100644
index f37d1728078..00000000000
--- a/TAO/examples/Callback_Quoter/Consumer.idl
+++ /dev/null
@@ -1,43 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-#if !defined (_CONSUMER_IDL)
-#define _CONSUMER_IDL
-
-module Callback_Quoter
-{
- // = TITLE
- // The Consumer interface is implemented by the consumer-client.
- // The interface functions are called by the Supplier.
-
- exception Invalid_Stock
- {
- // = TITLE
- // Requested stock does not exist
- };
-
- struct Info
- {
- // = TITLE
- // @@ Please fill in here.
-
- string stock_name;
- long value;
- };
-
- interface Consumer
- {
- // = TITLE
- // @@ Please fill in here.
-
- // supplier sends data to the consumer.
- void push (in Callback_Quoter::Info data);
- // @@ Make sure to put the comments "underneath"
- // the operation/method names...
-
- // Called by the chat server before it goes away.
- oneway void shutdown ();
- };
-};
-
-#endif /* _CONSUMER_IDL */