11 lines
166 B
C++
11 lines
166 B
C++
#pragma once
|
|
|
|
#include "InlineNode.h"
|
|
|
|
struct Text : public InlineNode {
|
|
std::string text;
|
|
|
|
NodeKind getKind() const {
|
|
return NodeKind::Text;
|
|
}
|
|
}; |