memgraph/storage/vertex_proxy.hpp

10 lines
170 B
C++

#pragma once
#include "record_proxy.hpp"
#include "vertices.hpp"
class VertexProxy : public RecordProxy<Vertex, Vertices, VertexProxy>
{
// TODO: implementation
};