Files
mdtex-compiler/include/ast/BlockNode/BlockNode.h
T
2026-05-17 16:30:49 +03:00

10 lines
186 B
C++

#pragma once
#include "ast/Node.h"
// #include "ast/InlineNode/InlineNode.h"
#include <vector>
#include <string>
struct BlockNode : public Node {
virtual ~BlockNode() = default;
};