#include <DotSerializer.hpp>
Definition at line 64 of file DotSerializer.hpp.
◆ DotAttributeSet()
◆ ~DotAttributeSet()
◆ AddAttribute() [1/3]
DotAttributeSet & AddAttribute |
( |
const std::string & |
name, |
|
|
const std::string & |
value |
|
) |
| |
Definition at line 111 of file DotSerializer.cpp.
113 std::stringstream ss;
114 ss << name <<
"=\"" << value <<
"\"";
115 m_Attributes.push_back(ss.str());
◆ AddAttribute() [2/3]
DotAttributeSet & AddAttribute |
( |
const std::string & |
name, |
|
|
const std::stringstream & |
value |
|
) |
| |
◆ AddAttribute() [3/3]
Definition at line 103 of file DotSerializer.cpp.
105 std::stringstream ss;
106 ss << name <<
"=" << value;
107 m_Attributes.push_back(ss.str());
The documentation for this class was generated from the following files: