From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- 21.02/classarmnn_1_1_dot_graph.xhtml | 212 +++++++++++++++++++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 21.02/classarmnn_1_1_dot_graph.xhtml (limited to '21.02/classarmnn_1_1_dot_graph.xhtml') diff --git a/21.02/classarmnn_1_1_dot_graph.xhtml b/21.02/classarmnn_1_1_dot_graph.xhtml new file mode 100644 index 0000000000..a36c70a9d5 --- /dev/null +++ b/21.02/classarmnn_1_1_dot_graph.xhtml @@ -0,0 +1,212 @@ + + + + + + + + + + + + + +ArmNN: DotGraph Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
DotGraph Class Reference
+
+
+ +

#include <DotSerializer.hpp>

+
+Inheritance diagram for DotGraph:
+
+
+ + +DotBase + +
+ + + + + + + + + + + +

+Public Member Functions

 DotGraph (std::ostream &stream, const char *name)
 
 ~DotGraph ()
 
- Public Member Functions inherited from DotBase
 DotBase (std::ostream &stream)
 
std::ostream & GetStream ()
 
+

Detailed Description

+
+

Definition at line 125 of file DotSerializer.hpp.

+

Constructor & Destructor Documentation

+ +

◆ DotGraph()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
DotGraph (std::ostream & stream,
const char * name 
)
+
+explicit
+
+ +

Definition at line 223 of file DotSerializer.cpp.

+ +

References DotBase::GetStream().

+
224  : DotBase(stream)
225 {
226  GetStream() << "digraph " << name << " {" << std::endl;
227 }
DotBase(std::ostream &stream)
+
std::ostream & GetStream()
+
+
+
+ +

◆ ~DotGraph()

+ +
+
+ + + + + + + +
~DotGraph ()
+
+ +

Definition at line 229 of file DotSerializer.cpp.

+ +

References DotBase::GetStream().

+
230 {
231  GetStream() << "}" << std::endl;
232 }
std::ostream & GetStream()
+
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1