#ifndef MEMGRAPH_DATA_MODEL_NODE_HPP #define MEMGRAPH_DATA_MODEL_NODE_HPP #include #include "edge.hpp" template struct Node { std::vector*> in; std::vector*> out; T* data; }; #endif