#pragma once #include "InlineNode.h" struct Text : public InlineNode { std::string text; NodeKind getKind() const { return NodeKind::Text; } };