diff options
Diffstat (limited to 'indra/newview/llfloatermarketplacelistings.h')
-rwxr-xr-x | indra/newview/llfloatermarketplacelistings.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/indra/newview/llfloatermarketplacelistings.h b/indra/newview/llfloatermarketplacelistings.h index 960b6c55e0..f2ff58a712 100755 --- a/indra/newview/llfloatermarketplacelistings.h +++ b/indra/newview/llfloatermarketplacelistings.h @@ -122,4 +122,28 @@ private: LLPanelMarketplaceListings * mPanelListings; }; + +//----------------------------------------------------------------------------- +// LLFloaterAssociateListing() +//----------------------------------------------------------------------------- +class LLFloaterAssociateListing : public LLFloater +{ + friend class LLFloaterReg; +public: + virtual BOOL postBuild(); + virtual BOOL handleKeyHere(KEY key, MASK mask); + + static LLFloaterAssociateListing* show(const LLUUID& folder_id); + +private: + LLFloaterAssociateListing(const LLSD& key); + virtual ~LLFloaterAssociateListing(); + + // UI Callbacks + void apply(); + void cancel(); + + LLUUID mUUID; +}; + #endif // LL_LLFLOATERMARKETPLACELISTINGS_H |