summaryrefslogtreecommitdiff
path: root/TAO/CIAO/tools/Daemon/Daemon.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/tools/Daemon/Daemon.idl')
-rw-r--r--TAO/CIAO/tools/Daemon/Daemon.idl28
1 files changed, 0 insertions, 28 deletions
diff --git a/TAO/CIAO/tools/Daemon/Daemon.idl b/TAO/CIAO/tools/Daemon/Daemon.idl
deleted file mode 100644
index 5d856ab1387..00000000000
--- a/TAO/CIAO/tools/Daemon/Daemon.idl
+++ /dev/null
@@ -1,28 +0,0 @@
-// $Id$
-
-/**
- * @file Daemon.idl
- *
- * @brief Controling interface for managing and controling CIAO daemon.
- */
-
-module CIAO
-{
- exception NotFound {};
-
- /**
- * @brief CIAO daemon process control program.
- */
- interface Daemon
- {
- // Canonical name of this daemon
- readonly attribute string name;
-
- // Acquire a specific service
- Object get_service (in string svc_name)
- raises (NotFound);
-
- // Shutdown the daemon process.
- oneway void shutdown ();
- };
-};