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