diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-07-09 10:17:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-09 10:17:11 -0400 |
commit | 0b337d5ffec731120adf85da45ceb1ddf5e74621 (patch) | |
tree | f9f875a4ce16ec8c5528aa90d729d0ba8ebf96e4 /indra/newview/llwearableitemslist.h | |
parent | 66fb45ddc7dd1a994f6b8312687cb73dbb1281dd (diff) | |
parent | ece0f4eb566af937d724f60f934beb6dfcb4d493 (diff) |
Merge pull request #1892 from secondlife/lua-appearance-listener
Lua appearance listener
Diffstat (limited to 'indra/newview/llwearableitemslist.h')
-rw-r--r-- | indra/newview/llwearableitemslist.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llwearableitemslist.h b/indra/newview/llwearableitemslist.h index 80e211ad6b..15033f5e9a 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,11 @@ protected: LLWearableType::EType mMenuWearableType; }; +struct LLFindOutfitItems : public LLInventoryCollectFunctor +{ + LLFindOutfitItems() {} + virtual ~LLFindOutfitItems() {} + virtual bool operator()(LLInventoryCategory *cat, LLInventoryItem *item); +}; + #endif //LL_LLWEARABLEITEMSLIST_H |