ArmNN
 21.05
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 223 of file DotSerializer.cpp.

References DotBase::GetStream().

224  : DotBase(stream)
225 {
226  GetStream() << "digraph " << name << " {" << std::endl;
227 }
DotBase(std::ostream &stream)
std::ostream & GetStream()

◆ ~DotGraph()

~DotGraph ( )

Definition at line 229 of file DotSerializer.cpp.

References DotBase::GetStream().

230 {
231  GetStream() << "}" << std::endl;
232 }
std::ostream & GetStream()

The documentation for this class was generated from the following files: