ArmNN
 23.02
DotGraph Class Reference

#include <DotSerializer.hpp>

Inheritance diagram for DotGraph:
DotBase

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:
armnn::DotBase::GetStream
std::ostream & GetStream()
Definition: DotSerializer.hpp:23
armnn::DotBase::DotBase
DotBase(std::ostream &stream)
Definition: DotSerializer.hpp:20