diff options
Diffstat (limited to 'indra/newview/llaccountingcostmanager.h')
-rw-r--r-- | indra/newview/llaccountingcostmanager.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llaccountingcostmanager.h b/indra/newview/llaccountingcostmanager.h index cccdc2e2d9..0bca1f54ef 100644 --- a/indra/newview/llaccountingcostmanager.h +++ b/indra/newview/llaccountingcostmanager.h @@ -40,9 +40,13 @@ public: virtual void onWeightsUpdate(const SelectionCost& selection_cost) = 0; virtual void setErrorStatus(U32 status, const std::string& reason) = 0; const LLHandle<LLAccountingCostObserver>& getObserverHandle() const { return mObserverHandle; } + const LLUUID& getTransactionID() { return mTransactionID; } protected: + virtual void generateTransactionID() = 0; + LLRootHandle<LLAccountingCostObserver> mObserverHandle; + LLUUID mTransactionID; }; //=============================================================================== class LLAccountingCostManager : public LLSingleton<LLAccountingCostManager> |