From 9aed8fb43441228343b925b42464a55042c47ca0 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 17 Nov 2021 13:16:45 +0000 Subject: IVGCVSW-6040 Update 21.11 Doxygen Documents Signed-off-by: Nikhil Raj Change-Id: Ia36ec98c4bebc27a69103911ea3409cd7db587a5 --- 21.11/classarmnn_1_1_dot_edge.xhtml | 250 ++++++++++++++++++++++++++++++++++++ 1 file changed, 250 insertions(+) create mode 100644 21.11/classarmnn_1_1_dot_edge.xhtml (limited to '21.11/classarmnn_1_1_dot_edge.xhtml') diff --git a/21.11/classarmnn_1_1_dot_edge.xhtml b/21.11/classarmnn_1_1_dot_edge.xhtml new file mode 100644 index 0000000000..6933540276 --- /dev/null +++ b/21.11/classarmnn_1_1_dot_edge.xhtml @@ -0,0 +1,250 @@ + + + + + + + + + + + + + +ArmNN: DotEdge Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
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.

+ +

References DotBase::GetStream().

+
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 }
DotBase(std::ostream &stream)
+
std::ostream & GetStream()
+
+
+
+ +

◆ ~DotEdge()

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

Definition at line 129 of file DotSerializer.cpp.

+ +

References DotBase::GetStream().

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

Member Function Documentation

+ +

◆ GetAttributeSet()

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

Definition at line 83 of file DotSerializer.hpp.

+ +

Referenced by Graph::SerializeToDot().

+
83 { return *m_Attributes.get(); }
+
+
+
The documentation for this class was generated from the following files: +
+
+ + + + -- cgit v1.2.1