#pragma once #include "InlineNode.h" struct Bold : public InlineNode { std::vector> children; NodeKind getKind() const { return NodeKind::Bold; } };