summaryrefslogtreecommitdiff
path: root/ace/Active_Map_Manager_T.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-10-06 13:05:48 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-10-06 13:05:48 +0000
commitbfb654d2ef5f572510693e6e706eeacbf269cee2 (patch)
tree41cae8da529357f2517a38a7b0d696b8dbae7076 /ace/Active_Map_Manager_T.h
parent5fe64a3d643b6434d2fe1cdc695064f4c4d2c8a7 (diff)
downloadATCD-bfb654d2ef5f572510693e6e706eeacbf269cee2.tar.gz
ChangeLogTag:Tue Oct 5 16:17:57 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/Active_Map_Manager_T.h')
-rw-r--r--ace/Active_Map_Manager_T.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Active_Map_Manager_T.h b/ace/Active_Map_Manager_T.h
index eda8383dc2c..074d410fd32 100644
--- a/ace/Active_Map_Manager_T.h
+++ b/ace/Active_Map_Manager_T.h
@@ -108,14 +108,14 @@ public:
// fails if <key> is not in the map.
int find (const ACE_Active_Map_Manager_Key &key,
- T &value);
+ T &value) const;
// Locate <value> associated with <key>.
- int find (const ACE_Active_Map_Manager_Key &key);
+ int find (const ACE_Active_Map_Manager_Key &key) const;
// Is <key> in the map?
int find (const ACE_Active_Map_Manager_Key &key,
- T *&internal_value);
+ T *&internal_value) const;
// Locate <value> associated with <key>. The value is returned via
// <internal_value> and hence a copy is saved. Note that
// <internal_value> is only a temporary pointer and will change when