#ifndef MEMGRAPH_CYPHER_AST_VALUES_HPP #define MEMGRAPH_CYPHER_AST_VALUES_HPP #include #include "expr.hpp" namespace ast { struct Float : public LeafExpr { using LeafExpr::LeafExpr; }; struct Integer : public LeafExpr { using LeafExpr::LeafExpr; }; struct Boolean : public LeafExpr { using LeafExpr::LeafExpr; }; struct String : public LeafExpr { using LeafExpr::LeafExpr; }; } #endif