From 8efb48a6847c5cd166c561127ae6611150963ce3 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 19 May 2023 11:14:28 +0100 Subject: Update Doxygen docu for 23.05 Signed-off-by: Nikhil Raj Change-Id: I0a992286f14fa68fcc6e5eba31ac39fed003cbbe --- 23.05/classarmnn_1_1_dot_edge.xhtml | 265 ++++++++++++++++++++++++++++++++++++ 1 file changed, 265 insertions(+) create mode 100644 23.05/classarmnn_1_1_dot_edge.xhtml (limited to '23.05/classarmnn_1_1_dot_edge.xhtml') diff --git a/23.05/classarmnn_1_1_dot_edge.xhtml b/23.05/classarmnn_1_1_dot_edge.xhtml new file mode 100644 index 0000000000..485af55ee2 --- /dev/null +++ b/23.05/classarmnn_1_1_dot_edge.xhtml @@ -0,0 +1,265 @@ + + + + + + + + + + + + + +ArmNN: DotEdge Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
DotEdge Class Reference
+
+
+ +

#include <DotSerializer.hpp>

+
+Inheritance diagram for DotEdge:
+
+
+ + +DotBase + +
+ + + + + + + + + + + + + +

+Public Member Functions

 DotEdge (std::ostream &stream, LayerGuid fromNodeId, LayerGuid toNodeId)
 
 ~DotEdge ()
 
DotAttributeSetGetAttributeSet ()
 
- Public Member Functions inherited from DotBase
 DotBase (std::ostream &stream)
 
std::ostream & GetStream ()
 
+

Detailed Description

+
+

Definition at line 77 of file DotSerializer.hpp.

+

Constructor & Destructor Documentation

+ +

◆ DotEdge()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
DotEdge (std::ostream & stream,
LayerGuid fromNodeId,
LayerGuid toNodeId 
)
+
+explicit
+
+ +

Definition at line 119 of file DotSerializer.cpp.

+
120  : DotBase(stream)
+
121 {
+
122  std::stringstream ss;
+
123  ss << Indent(4) << fromNodeId << " -> " << toNodeId << " ";
+
124  GetStream() << ss.str();
+
125 
+
126  m_Attributes = std::make_unique<DotAttributeSet>(stream);
+
127 }
+
+

References DotBase::GetStream().

+ +
+
+ +

◆ ~DotEdge()

+ +
+
+ + + + + + + +
~DotEdge ()
+
+ +

Definition at line 129 of file DotSerializer.cpp.

+
130 {
+
131  m_Attributes.reset(nullptr);
+
132  GetStream() << ";" << std::endl;
+
133 }
+
+

References DotBase::GetStream().

+ +
+
+

Member Function Documentation

+ +

◆ GetAttributeSet()

+ +
+
+ + + + + +
+ + + + + + + +
DotAttributeSet& GetAttributeSet ()
+
+inline
+
+ +

Definition at line 83 of file DotSerializer.hpp.

+
83 { return *m_Attributes.get(); }
+
+

Referenced by Graph::SerializeToDot().

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