7 lines
106 B
C
7 lines
106 B
C
#pragma once
|
|
|
|
#include "Node.h"
|
|
|
|
struct InlineNode : public Node {
|
|
virtual ~InlineNode() = default;
|
|
}; |