From 6f92c8e9f8bb38dcf5dccf8deeff5112ecd8e37c Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 22 Nov 2023 11:41:15 +0000 Subject: Update Doxygen for 23.11 Signed-off-by: Nikhil Raj Change-Id: I47cd933f5002cb94a73aa97689d7b3d9c93cb849 --- 23.11/classarmnn_1_1_dot_graph.html | 219 ++++++++++++++++++++++++++++++++++++ 1 file changed, 219 insertions(+) create mode 100644 23.11/classarmnn_1_1_dot_graph.html (limited to '23.11/classarmnn_1_1_dot_graph.html') diff --git a/23.11/classarmnn_1_1_dot_graph.html b/23.11/classarmnn_1_1_dot_graph.html new file mode 100644 index 0000000000..479c9a2645 --- /dev/null +++ b/23.11/classarmnn_1_1_dot_graph.html @@ -0,0 +1,219 @@ + + + + + + + + +Arm NN: DotGraph Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
DotGraph Class Reference
+
+
+ +

#include <DotSerializer.hpp>

+
+Inheritance diagram for DotGraph:
+
+
+
+
[legend]
+
+Collaboration diagram for DotGraph:
+
+
+
+
[legend]
+ + + + + + + + + + + +

+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 224 of file DotSerializer.cpp.

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

References DotBase::GetStream().

+ +
+
+ +

◆ ~DotGraph()

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

Definition at line 230 of file DotSerializer.cpp.

+
231 {
+
232  GetStream() << "}" << std::endl;
+
233 }
+
+

References DotBase::GetStream().

+ +
+
+
The documentation for this class was generated from the following files: +
+
+
std::ostream & GetStream()
+
DotBase(std::ostream &stream)
+ + + + -- cgit v1.2.1