diff options
author | Dave SIMmONs <simon@lindenlab.com> | 2011-03-28 16:54:40 -0700 |
---|---|---|
committer | Dave SIMmONs <simon@lindenlab.com> | 2011-03-28 16:54:40 -0700 |
commit | f2bb81d17660054697ed984afc0e3f8d90f77eda (patch) | |
tree | b7a4b137dcdab719bf9e877cc6d6466f9c437f25 /indra/newview/llgesturemgr.h | |
parent | 0642000a12785bc4e17b334751f386bd1ec6c702 (diff) |
Added LLEventHost API for gestures. Have new llgesturelistener.cpp and .h files, wired up to LLGestureMgr class. Reviewed by Kelly
Diffstat (limited to 'indra/newview/llgesturemgr.h')
-rw-r--r-- | indra/newview/llgesturemgr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llgesturemgr.h b/indra/newview/llgesturemgr.h index b9935efeb3..e305895797 100644 --- a/indra/newview/llgesturemgr.h +++ b/indra/newview/llgesturemgr.h @@ -37,6 +37,7 @@ #include "llviewerinventory.h" class LLMultiGesture; +class LLGestureListener; class LLGestureStep; class LLUUID; class LLVFS; @@ -172,6 +173,9 @@ private: callback_map_t mCallbackMap; std::vector<LLMultiGesture*> mPlaying; BOOL mValid; + + // LLEventHost interface + boost::shared_ptr<LLGestureListener> mListener; }; #endif |