memgraph/storage/model/record.hpp
2015-08-30 01:12:46 +02:00

26 lines
418 B
C++

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