diff options
author | Dave Parks <davep@lindenlab.com> | 2010-01-06 15:02:43 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-01-06 15:02:43 -0600 |
commit | 078278bf51b50ded63d5f7c4a9d99146f72aba69 (patch) | |
tree | db0f645016a99c90a6f384b1fe58d53cd3467e07 /indra/newview/llassetuploadresponders.h | |
parent | f9e8fb504ba4cfb9e7c2b364d182f0c06981192e (diff) |
LLImportCollada no longer a singleton to prepare for subclassing.
Diffstat (limited to 'indra/newview/llassetuploadresponders.h')
-rw-r--r-- | indra/newview/llassetuploadresponders.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/indra/newview/llassetuploadresponders.h b/indra/newview/llassetuploadresponders.h index c869988203..4b79e15529 100644 --- a/indra/newview/llassetuploadresponders.h +++ b/indra/newview/llassetuploadresponders.h @@ -61,19 +61,24 @@ protected: std::string mFileName; }; - +class LLImportCollada; // TODO*: Remove this once deprecated class LLNewAgentInventoryResponder : public LLAssetUploadResponder { public: + LLImportCollada* mImport; + LLNewAgentInventoryResponder( const LLSD& post_data, const LLUUID& vfile_id, - LLAssetType::EType asset_type); + LLAssetType::EType asset_type, + LLImportCollada* import); + LLNewAgentInventoryResponder( const LLSD& post_data, const std::string& file_name, - LLAssetType::EType asset_type); + LLAssetType::EType asset_type, + LLImportCollada* import); virtual void error(U32 statusNum, const std::string& reason); virtual void uploadComplete(const LLSD& content); virtual void uploadFailure(const LLSD& content); |