diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llclassifiedstatsresponder.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/newview/llclassifiedstatsresponder.h b/linden/indra/newview/llclassifiedstatsresponder.h index c3eddbe..25579be 100644 --- a/linden/indra/newview/llclassifiedstatsresponder.h +++ b/linden/indra/newview/llclassifiedstatsresponder.h | |||
@@ -24,11 +24,12 @@ | |||
24 | 24 | ||
25 | #include "llhttpclient.h" | 25 | #include "llhttpclient.h" |
26 | #include "llview.h" | 26 | #include "llview.h" |
27 | #include "lluuid.h" | ||
27 | 28 | ||
28 | class LLClassifiedStatsResponder : public LLHTTPClient::Responder | 29 | class LLClassifiedStatsResponder : public LLHTTPClient::Responder |
29 | { | 30 | { |
30 | public: | 31 | public: |
31 | LLClassifiedStatsResponder(LLViewHandle classified_panel_handle); | 32 | LLClassifiedStatsResponder(LLViewHandle classified_panel_handle, LLUUID classified_id); |
32 | //If we get back a normal response, handle it here | 33 | //If we get back a normal response, handle it here |
33 | virtual void result(const LLSD& content); | 34 | virtual void result(const LLSD& content); |
34 | //If we get back an error (not found, etc...), handle it here | 35 | //If we get back an error (not found, etc...), handle it here |
@@ -36,6 +37,7 @@ public: | |||
36 | 37 | ||
37 | protected: | 38 | protected: |
38 | LLViewHandle mClassifiedPanelHandle; | 39 | LLViewHandle mClassifiedPanelHandle; |
40 | LLUUID mClassifiedID; | ||
39 | }; | 41 | }; |
40 | 42 | ||
41 | #endif // LL_LLCLASSIFIEDSTATSRESPONDER_H | 43 | #endif // LL_LLCLASSIFIEDSTATSRESPONDER_H |