diff options
author | Merov Linden <merov@lindenlab.com> | 2014-05-05 15:13:48 -0700 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-05-05 15:13:48 -0700 |
commit | 1a837c5719fa8dded91561a97839d2ed28e87553 (patch) | |
tree | 5f805b02e95e4a4b24c0711257afc9136a2a01a0 /indra/newview/llmarketplacefunctions.h | |
parent | 9c5d3de013921999b2dfb4994de91ab10308fd6a (diff) |
DD-22 : WIP : Completed GET and POST listings routes. Refactored the marketplace data code a bit as a result
Diffstat (limited to 'indra/newview/llmarketplacefunctions.h')
-rwxr-xr-x | indra/newview/llmarketplacefunctions.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llmarketplacefunctions.h b/indra/newview/llmarketplacefunctions.h index 7f1b6350e8..aa286adcc8 100755 --- a/indra/newview/llmarketplacefunctions.h +++ b/indra/newview/llmarketplacefunctions.h @@ -163,7 +163,7 @@ public: void initializeSLM(const status_updated_signal_t::slot_type& cb); void getSLMListings(); //void getSLMListing(); - void postSLMListing(const LLUUID& folder_id); + void createSLMListing(const LLUUID& folder_id); //void modifySLMListing(); //void associateSLMListing(); @@ -174,7 +174,8 @@ public: bool isVersionFolder(const LLUUID& folder_id); // returns true if folder_id is a Version folder // Create/Delete Marketplace data set : each method returns true if the function succeeds, false if error - bool addListing(const LLUUID& folder_id); + bool createListing(const LLUUID& folder_id); + bool addListing(const LLUUID& folder_id, S32 listing_id, const LLUUID& version_id, bool is_listed); bool associateListing(const LLUUID& folder_id, S32 listing_id); bool deleteListing(const LLUUID& folder_id); |