diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-06-25 14:51:53 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2024-06-25 14:51:53 +0300 |
commit | eb6d24e531aa5faa251b7aaf8b13c62f06708696 (patch) | |
tree | 2b6cbd003520a44b46c9c82348fec63d3fe5f768 /indra/newview/llwearableitemslist.h | |
parent | 61fad5fd04f90542b2842dec86a6f74a4f801de7 (diff) |
Add wear/detach actions to Appearance listener; update example script
Diffstat (limited to 'indra/newview/llwearableitemslist.h')
-rw-r--r-- | indra/newview/llwearableitemslist.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/llwearableitemslist.h b/indra/newview/llwearableitemslist.h index 80e211ad6b..a24679961f 100644 --- a/indra/newview/llwearableitemslist.h +++ b/indra/newview/llwearableitemslist.h @@ -32,6 +32,7 @@ #include "llsingleton.h" // newview +#include "llinventoryfunctions.h" #include "llinventoryitemslist.h" #include "llinventorylistitem.h" #include "lllistcontextmenu.h" @@ -505,4 +506,12 @@ protected: LLWearableType::EType mMenuWearableType; }; +class LLFindOutfitItems : public LLInventoryCollectFunctor +{ + public: + LLFindOutfitItems() {} + virtual ~LLFindOutfitItems() {} + virtual bool operator()(LLInventoryCategory *cat, LLInventoryItem *item); +}; + #endif //LL_LLWEARABLEITEMSLIST_H |