| 206 | |
| 207 | |
| 208 | DotDefaults::DotDefaults(std::ostream& stream, const char* type) |
| 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 | } |
| 217 | |
| 218 | DotDefaults::~DotDefaults() |
| 219 | { |