diff options
author | James Cook <james@lindenlab.com> | 2010-05-25 11:39:06 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-05-25 11:39:06 -0700 |
commit | 77e6fcd4230f7540c9f4d6f3d503737c6eaf408c (patch) | |
tree | 6d1c3b16fb108b52e3476cf9f7716eea8e114971 /indra/llmessage/llcachename.cpp | |
parent | 934dc6e2d0fabb935c75bb611ceb543426e485eb (diff) |
DEV-50013 WIP gCacheName->getGroup() to distinguish from av lookups
Helps with global finds looking for remaining calls to patch.
Reviewed with Leyla.
Diffstat (limited to 'indra/llmessage/llcachename.cpp')
-rw-r--r-- | indra/llmessage/llcachename.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llmessage/llcachename.cpp b/indra/llmessage/llcachename.cpp index 8e87b6f9b9..c6c189c7a1 100644 --- a/indra/llmessage/llcachename.cpp +++ b/indra/llmessage/llcachename.cpp @@ -582,6 +582,12 @@ boost::signals2::connection LLCacheName::get(const LLUUID& id, bool is_group, co return res; } +boost::signals2::connection LLCacheName::getGroup(const LLUUID& group_id, + const LLCacheNameCallback& callback) +{ + return get(group_id, true, callback); +} + boost::signals2::connection LLCacheName::get(const LLUUID& id, bool is_group, old_callback_t callback, void* user_data) { return get(id, is_group, boost::bind(callback, _1, _2, _3, user_data)); |