#ifndef MEMGRAPH_STORAGE_MODEL_VERTEX_HPP #define MEMGRAPH_STORAGE_MODEL_VERTEX_HPP #include #include "record.hpp" #include "edge.hpp" struct Vertex : public Record { Vertex(uint64_t id) : Record(id) {} // adjacency list containing pointers to outgoing edges from this vertex std::vector out; }; #endif