diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2013-01-15 20:28:05 -0700 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2013-01-15 20:28:05 -0700 |
commit | 970fbdbeb80f20811fb286f6731b854f9b20a76e (patch) | |
tree | 813888af6ce527046343e1b56a903614f5db8a1d /indra | |
parent | 7378259aa551c395b67e40196487584eaf5e8007 (diff) |
a minor change to LLTrace::ExtendableRecording, make its functions public.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/lltracerecording.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llcommon/lltracerecording.h b/indra/llcommon/lltracerecording.h index aa3200e5ad..5105874ba1 100644 --- a/indra/llcommon/lltracerecording.h +++ b/indra/llcommon/lltracerecording.h @@ -390,6 +390,7 @@ namespace LLTrace class ExtendableRecording : public LLStopWatchControlsMixin<ExtendableRecording> { + public: void extend(); // implementation for LLStopWatchControlsMixin @@ -401,6 +402,8 @@ namespace LLTrace /*virtual*/ void reset(); /*virtual*/ void splitTo(ExtendableRecording& other); /*virtual*/ void splitFrom(ExtendableRecording& other); + + const Recording& getAcceptedRecording() const {return mAcceptedRecording;} private: Recording mAcceptedRecording; Recording mPotentialRecording; |