#ifndef MEMGRAPH_STORAGE_RECORD_HPP #define MEMGRAPH_STORAGE_RECORD_HPP #include #include "utils/crtp.hpp" #include "sync/spinlock.hpp" #include "sync/lockable.hpp" #include "storage/model/utils/mvcc.hpp" #include "properties/properties.hpp" template class Record : public Crtp, public Mvcc, Lockable { public: Properties props; }; #endif