summaryrefslogtreecommitdiff
path: root/CIAO/docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base.idl')
-rw-r--r--CIAO/docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base.idl41
1 files changed, 0 insertions, 41 deletions
diff --git a/CIAO/docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base.idl b/CIAO/docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base.idl
deleted file mode 100644
index b038cdca509..00000000000
--- a/CIAO/docs/tutorials/Quoter/Simple/Stock_Base/Stock_Base.idl
+++ /dev/null
@@ -1,41 +0,0 @@
-//$Id$
-
-#include <Components.idl>
-
-module Stock
-{
- exception Invalid_Stock {};
- typedef sequence<octet> ImageBlob;
-
- /**
- * @struct StockInfo
- */
- struct StockInfo {
- string name;
- long high;
- long low;
- long last;
- };
-
- /**
- * @interface: StockQuoter
- *
- * @brief: component facet
- */
- interface StockQuoter {
- /// Returns the current stock info
- StockInfo get_stock_info (in string stock_name)
- raises (Invalid_Stock);
- };
-
-
- /**
- * @event StockName
- *
- * @brief component event
- */
- eventtype StockName {
- // Name of the stock.
- public string name;
- };
-};