summaryrefslogtreecommitdiff
path: root/TAO/tests/Quoter/quoter.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Quoter/quoter.idl')
-rw-r--r--TAO/tests/Quoter/quoter.idl24
1 files changed, 0 insertions, 24 deletions
diff --git a/TAO/tests/Quoter/quoter.idl b/TAO/tests/Quoter/quoter.idl
deleted file mode 100644
index 33cc8847fdd..00000000000
--- a/TAO/tests/Quoter/quoter.idl
+++ /dev/null
@@ -1,24 +0,0 @@
-// $Id$
-
-module Stock
-{
- exception Invalid_Stock {};
- exception Invalid_Quoter {};
-
- interface Quoter
- {
- // Returns the current stock value or throws and exception
- long get_quote (in string stock_name) raises (Invalid_Stock, Invalid_Quoter);
-
- // Destroy a Quoter session and release resources.
- void destroy ();
- };
-
- // Manage the lifecycle of a Quoter object.
- interface Quoter_Factory
- {
- // Returns a new Quoter selected by name
- // e.g., "Dow Jones," "Reuters,", etc
- Quoter create_quoter (in string name) raises (Invalid_Quoter);
- };
-};