memgraph/include/storage/vertex_record.hpp

13 lines
311 B
C++
Raw Normal View History

#pragma once
#include "mvcc/version_list.hpp"
#include "storage/vertex.hpp"
class VertexRecord : public mvcc::VersionList<Vertex>
{
public:
VertexRecord(Id id) : VersionList(id) {}
VertexRecord(const VersionList &) = delete;
VertexRecord(VersionList &&other) : VersionList(std::move(other)) {}
};