summaryrefslogtreecommitdiff
path: root/CIAO/tutorials/Quoter/Simple/Broker/StockBroker.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/tutorials/Quoter/Simple/Broker/StockBroker.idl')
-rw-r--r--CIAO/tutorials/Quoter/Simple/Broker/StockBroker.idl38
1 files changed, 0 insertions, 38 deletions
diff --git a/CIAO/tutorials/Quoter/Simple/Broker/StockBroker.idl b/CIAO/tutorials/Quoter/Simple/Broker/StockBroker.idl
deleted file mode 100644
index 81afd2a5d0c..00000000000
--- a/CIAO/tutorials/Quoter/Simple/Broker/StockBroker.idl
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef STOCKBROKER_IDL
-#define STOCKBROKER_IDL
-
-#include "../Stock_Base/Stock_Base.idl"
-
-module Stock
-{
- interface StockSubscriber {
- /// subscribe to an interested stock
- void stock_subscribe (in string stock_name)
- raises (Invalid_Stock);
- /// unsubscribe to an stock
- void stock_unsubscribe (in string stock_name)
- raises (Invalid_Stock);
- };
-
- /**
- * @class StockBroker
- *
- * @brief component
- */
- component StockBroker supports StockSubscriber
- {
- consumes StockName notify_in;
- uses StockQuoter read_quoter;
- };
-
- /**
- * @class StockBrokerHome
- *
- * @brief home for StockBroker component
- */
- home StockBrokerHome manages StockBroker
- {
- };
-};
-
-#endif /* STOCKBROKER_IDL */