From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/classarmnn_1_1_dot_defaults.xhtml | 244 ++++++++++++++++++++++++++++++++ 1 file changed, 244 insertions(+) create mode 100644 20.02/classarmnn_1_1_dot_defaults.xhtml (limited to '20.02/classarmnn_1_1_dot_defaults.xhtml') diff --git a/20.02/classarmnn_1_1_dot_defaults.xhtml b/20.02/classarmnn_1_1_dot_defaults.xhtml new file mode 100644 index 0000000000..0520441b5c --- /dev/null +++ b/20.02/classarmnn_1_1_dot_defaults.xhtml @@ -0,0 +1,244 @@ + + + + + + + + + + + + + +ArmNN: DotDefaults Class Reference + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+ +
+
DotDefaults Class Reference
+
+
+ +

#include <DotSerializer.hpp>

+
+Inheritance diagram for DotDefaults:
+
+
+ + +DotBase + +
+ + + + + + + + + + + + + +

+Public Member Functions

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

Detailed Description

+
+

Definition at line 114 of file DotSerializer.hpp.

+

Constructor & Destructor Documentation

+ +

◆ DotDefaults()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
DotDefaults (std::ostream & stream,
const char * type 
)
+
+explicit
+
+ +

Definition at line 208 of file DotSerializer.cpp.

+ +

References DotBase::GetStream().

+
209  : DotBase(stream)
210 {
211  std::stringstream ss;
212  ss << Indent(4) << type;
213 
214  GetStream() << ss.str() << " ";
215  m_Attributes = std::make_unique<DotAttributeSet>(stream);
216 }
DotBase(std::ostream &stream)
+
std::ostream & GetStream()
+
+
+
+ +

◆ ~DotDefaults()

+ +
+
+ + + + + + + +
~DotDefaults ()
+
+ +

Definition at line 218 of file DotSerializer.cpp.

+ +

References DotBase::GetStream().

+
219 {
220  m_Attributes.reset(nullptr);
221  GetStream() << ";" << std::endl;
222 }
std::ostream & GetStream()
+
+
+
+

Member Function Documentation

+ +

◆ GetAttributeSet()

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

Definition at line 120 of file DotSerializer.hpp.

+ +

Referenced by Graph::SerializeToDot().

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