summaryrefslogtreecommitdiff
path: root/TAO/examples/POA/On_Demand_Loading/Dir_Service.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/POA/On_Demand_Loading/Dir_Service.idl')
-rw-r--r--TAO/examples/POA/On_Demand_Loading/Dir_Service.idl37
1 files changed, 0 insertions, 37 deletions
diff --git a/TAO/examples/POA/On_Demand_Loading/Dir_Service.idl b/TAO/examples/POA/On_Demand_Loading/Dir_Service.idl
deleted file mode 100644
index 3246e16054d..00000000000
--- a/TAO/examples/POA/On_Demand_Loading/Dir_Service.idl
+++ /dev/null
@@ -1,37 +0,0 @@
-// $Id$
-
-// ================================================================
-//
-// = FILENAME
-// Dir_Service.idl
-//
-// = DESCRIPTION
-// The Dir_Service IDL interface.
-//
-// = AUTHOR
-// Kirthika Parameswaran <kirthika@cs.wustl.edu>
-//
-// ================================================================
-
-interface Dir_Service
-{
- // = TITLE
- // The interface for Directory Service.
- //
- // = DESCRIPTION
- // This interface can be used for any directory assistance.
-
- long tele_number (in string name);
- // A simple twoway operation, the idea is to verify that the
- // telephone number can be located.
-
- oneway void end_note ();
- // A simple oneway operation, which can be used before ending the
- // session.
-
- oneway void area_codes_info ();
- // A oneway operation which describes the area codes.
-
- void shutdown ();
- // Shutdown the server.
-};