diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2009-12-03 11:51:50 -0800 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2009-12-03 11:51:50 -0800 |
commit | 18901432e93ab887726b58354ae45ddb43e8ed27 (patch) | |
tree | a56ff5c05aeaccf887756058043c2aa33f0a35e3 /indra/llcommon/llevents.h | |
parent | ed0596cfc7150021fdb37faa77fdf1b51859bc4b (diff) | |
parent | d805fab31e75c268ee6d9eb888c596a63caffc18 (diff) |
Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/
Diffstat (limited to 'indra/llcommon/llevents.h')
-rw-r--r-- | indra/llcommon/llevents.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/llcommon/llevents.h b/indra/llcommon/llevents.h index ed714e4e40..a73ada2931 100644 --- a/indra/llcommon/llevents.h +++ b/indra/llcommon/llevents.h @@ -257,6 +257,11 @@ namespace LLEventDetail /// signature. typedef boost::function<LLBoundListener(const LLEventListener&)> ConnectFunc; + /// overload of visit_and_connect() when we have a string identifier available + template <typename LISTENER> + LLBoundListener visit_and_connect(const std::string& name, + const LISTENER& listener, + const ConnectFunc& connect_func); /** * Utility template function to use Visitor appropriately * @@ -271,11 +276,6 @@ namespace LLEventDetail { return visit_and_connect("", listener, connect_func); } - /// overload of visit_and_connect() when we have a string identifier available - template <typename LISTENER> - LLBoundListener visit_and_connect(const std::string& name, - const LISTENER& listener, - const ConnectFunc& connect_func); } // namespace LLEventDetail /***************************************************************************** |