From fb14ebbd68e04876809145296af96f6f41857418 Mon Sep 17 00:00:00 2001 From: James Ward Date: Thu, 26 Nov 2020 11:08:12 +0000 Subject: IVGCVSW-5348 Update Doxygen Docu * Update Doxygen Documentation for 20.11 release Signed-off-by: James Ward Change-Id: Ib47edac7923a642a277b1169d1085e5622021dc0 --- 20.11/classarmnn_1_1_dot_edge.xhtml | 250 ++++++++++++++++++++++++++++++++++++ 1 file changed, 250 insertions(+) create mode 100644 20.11/classarmnn_1_1_dot_edge.xhtml (limited to '20.11/classarmnn_1_1_dot_edge.xhtml') diff --git a/20.11/classarmnn_1_1_dot_edge.xhtml b/20.11/classarmnn_1_1_dot_edge.xhtml new file mode 100644 index 0000000000..3009b9f187 --- /dev/null +++ b/20.11/classarmnn_1_1_dot_edge.xhtml @@ -0,0 +1,250 @@ + + + + + + + + + + + + + +ArmNN: DotEdge Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.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 118 of file DotSerializer.cpp.

+ +

References DotBase::GetStream().

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

◆ ~DotEdge()

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

Definition at line 128 of file DotSerializer.cpp.

+ +

References DotBase::GetStream().

+
129 {
130  m_Attributes.reset(nullptr);
131  GetStream() << ";" << std::endl;
132 }
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