From a983e4699082a0b1ef685bab7354f2ad9cd37a44 Mon Sep 17 00:00:00 2001 From: Colm Donelan Date: Wed, 20 May 2020 16:12:19 +0100 Subject: Updating Doxygen documentation for 20.05 release. Change-Id: I4d624343ed5fd6ae269c3d53532903084508fd14 Signed-off-by: Colm Donelan --- ...tarmnn_1_1profiling_1_1_stream_redirector.xhtml | 229 +++++++++++++++++++++ 1 file changed, 229 insertions(+) create mode 100644 20.05/structarmnn_1_1profiling_1_1_stream_redirector.xhtml (limited to '20.05/structarmnn_1_1profiling_1_1_stream_redirector.xhtml') diff --git a/20.05/structarmnn_1_1profiling_1_1_stream_redirector.xhtml b/20.05/structarmnn_1_1profiling_1_1_stream_redirector.xhtml new file mode 100644 index 0000000000..4bb1df5fd7 --- /dev/null +++ b/20.05/structarmnn_1_1profiling_1_1_stream_redirector.xhtml @@ -0,0 +1,229 @@ + + + + + + + + + + + + + +ArmNN: StreamRedirector Struct Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
StreamRedirector Struct Reference
+
+
+ +

#include <ProfilingTests.hpp>

+ + + + + + + + +

+Public Member Functions

 StreamRedirector (std::ostream &stream, std::streambuf *newStreamBuffer)
 
 ~StreamRedirector ()
 
void CancelRedirect ()
 
+

Detailed Description

+
+

Definition at line 43 of file ProfilingTests.hpp.

+

Constructor & Destructor Documentation

+ +

◆ StreamRedirector()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
StreamRedirector (std::ostream & stream,
std::streambuf * newStreamBuffer 
)
+
+inline
+
+ +

Definition at line 46 of file ProfilingTests.hpp.

+
47  : m_Stream(stream)
48  , m_BackupBuffer(m_Stream.rdbuf(newStreamBuffer))
49  {}
+
+
+ +

◆ ~StreamRedirector()

+ +
+
+ + + + + +
+ + + + + + + +
~StreamRedirector ()
+
+inline
+
+ +

Definition at line 51 of file ProfilingTests.hpp.

+ +
+
+

Member Function Documentation

+ +

◆ CancelRedirect()

+ +
+
+ + + + + +
+ + + + + + + +
void CancelRedirect ()
+
+inline
+
+ +

Definition at line 53 of file ProfilingTests.hpp.

+
54  {
55  // Only cancel the redirect once.
56  if (m_BackupBuffer != nullptr )
57  {
58  m_Stream.rdbuf(m_BackupBuffer);
59  m_BackupBuffer = nullptr;
60  }
61  }
+
+
+
The documentation for this struct was generated from the following file: +
+
+ + + + -- cgit v1.2.1