Files
mdtex-compiler/include/ast/InlineNode/InlineCode.h
T
2026-05-14 01:49:48 +03:00

11 lines
190 B
C++

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