#ifndef MEMGRAPH_DATA_MODEL_EDGE_HPP #define MEMGRAPH_DATA_MODEL_EDGE_HPP #include #include "record.hpp" template struct Vertex; template struct Edge : public Record, id_t, lock_t> { Edge(uint64_t id) : Record, id_t, lock_t>(id) {} using vertex_t = Vertex; // pointer to the vertex this edge points to vertex_t* to; }; #endif