blob: b4d5377601a8cd8b12f7b5040e1cb0be7ccf34bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/**
* @file llmapresponders.h
* @brief Processes responses received for asset upload requests.
*
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLNEWAGENTINVENTORYRESPONDER_H
#define LL_LLNEWAGENTINVENTORYRESPONDER_H
#include "llhttpclient.h"
class LLNewAgentInventoryResponder : public LLHTTPClient::Responder
{
public:
LLNewAgentInventoryResponder(const LLUUID& uuid, const LLSD& post_data);
void error(U32 statusNum, const std::string& reason);
virtual void result(const LLSD& content);
private:
LLUUID mUUID;
LLSD mPostData;
};
#endif // LL_LLNEWAGENTINVENTORYRESPONDER_H
|