summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-03-03 15:26:42 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-03-03 15:26:42 +0000
commit03120b9111bf7550bde257bf1837f955bfed5269 (patch)
tree973084b95fa69b7409c04de59f599e96d24643db
parentecdcb58ce7bc03d42ff85b4add9252b6e8215ed4 (diff)
downloadATCD-03120b9111bf7550bde257bf1837f955bfed5269.tar.gz
ChangeLogTag: Thu Mar 3 15:08:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-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.
};