summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl')
-rw-r--r--TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
index acae98bb07f..604081c7c68 100644
--- a/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
+++ b/TAO/orbsvcs/ImplRepo_Service/ImR_Locator.idl
@@ -1,5 +1,4 @@
// -*- IDL -*-
-
// $Id$
#include "ImR_Activator.idl"
@@ -8,14 +7,15 @@ module ImplementationRepository
{
interface Locator : Administration
{
- // returns a token that can be used (along with activator name) to unregister the activator.
+ /// returns a token that can be used (along with activator name) to
+ /// unregister the activator.
long register_activator (in string name, in Activator act);
- // You must pass in the token returned from register_activator.
+ /// You must pass in the token returned from register_activator.
void unregister_activator (in string name, in long token);
- // The ImR_Activator calls this method to notify death of child
- // process that it had started.
+ /// The ImR_Activator calls this method to notify death of child
+ /// process that it had started.
void notify_child_death (in string name);
};
};