summaryrefslogtreecommitdiff
path: root/indra/newview/llmeshrepository.h
diff options
context:
space:
mode:
authorNyx (Neal Orman) <nyx@lindenlab.com>2011-06-30 15:55:19 -0400
committerNyx (Neal Orman) <nyx@lindenlab.com>2011-06-30 15:55:19 -0400
commit17060f4e92b12ab74a1b570cd9ee4d1543fb23d1 (patch)
treebd23d5f35279f6e5b7fa2da55631c22a0eb68d58 /indra/newview/llmeshrepository.h
parente4b12b83e8721e0856af0305f6cee46cd6092024 (diff)
SH-1332 Remaining mesh wizard upload work
adding observer classes for the upload step so we don't move to success state until upload succeeds.
Diffstat (limited to 'indra/newview/llmeshrepository.h')
-rw-r--r--indra/newview/llmeshrepository.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/indra/newview/llmeshrepository.h b/indra/newview/llmeshrepository.h
index 03993c6f2c..df342facc0 100644
--- a/indra/newview/llmeshrepository.h
+++ b/indra/newview/llmeshrepository.h
@@ -447,10 +447,13 @@ public:
LLQuaternion& result_rot,
LLVector3& result_scale);
- void setObserverHandle(LLHandle<LLWholeModelFeeObserver> observer_handle) { mObserverHandle = observer_handle; }
+ void setFeeObserverHandle(LLHandle<LLWholeModelFeeObserver> observer_handle) { mFeeObserverHandle = observer_handle; }
+ void setUploadObserverHandle(LLHandle<LLWholeModelUploadObserver> observer_handle) { mUploadObserverHandle = observer_handle; }
private:
- LLHandle<LLWholeModelFeeObserver> mObserverHandle;
+ LLHandle<LLWholeModelFeeObserver> mFeeObserverHandle;
+ LLHandle<LLWholeModelUploadObserver> mUploadObserverHandle;
+
bool mDoUpload; // if FALSE only model data will be requested, otherwise the model will be uploaded
};