summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/tests/Exposed_Policies/Counter.idl12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tests/Exposed_Policies/Counter.idl b/TAO/tests/Exposed_Policies/Counter.idl
index 60ac5162c8a..d8fa1959ce3 100644
--- a/TAO/tests/Exposed_Policies/Counter.idl
+++ b/TAO/tests/Exposed_Policies/Counter.idl
@@ -1,18 +1,18 @@
//$Id$
-// This interface abstracts a counter. It provides methods
-// for increasing and getting the value of the counter.
+/// This interface abstracts a counter. It provides methods
+/// for increasing and getting the value of the counter.
interface Counter
{
+ /// Increases the counter value.
void increment ();
- // Increases the counter value.
+ /// Decreases the counter value.
long get_count ();
- // Decreases the counter value.
+ /// Sets the counter value to zero.
void reset ();
- // Sets the counter value to zero.
+ /// Shuts down the ORB on which this obj is running.
oneway void shutdown ();
- // Shuts down the ORB on which this obj is running.
};