#ifndef MEMGRAPH_CYPHER_AST_PATTERN_HPP #define MEMGRAPH_CYPHER_AST_PATTERN_HPP #include "ast_node.hpp" namespace ast { template struct Direction : public AstNode {}; struct DirectionLeft : public Direction {}; struct DirectionRight : public Direction {}; struct Unidirectional : public Direction {}; struct Pattern : public AstNode { Node* node; Pattern* next; }; } #endif