1849514159
It's compiling. All tests with exception of integration_querys pass
19 lines
457 B
C++
19 lines
457 B
C++
#pragma once
|
|
|
|
#include "data_structures/concurrent/concurrent_map.hpp"
|
|
#include "mvcc/version_list.hpp"
|
|
#include "storage/common.hpp"
|
|
#include "storage/edge_accessor.hpp"
|
|
|
|
class Edges
|
|
{
|
|
public:
|
|
Edge::Accessor find(DbTransaction &t, const Id &id);
|
|
Edge::Accessor insert(DbTransaction &t, VertexRecord *from,
|
|
VertexRecord *to);
|
|
|
|
private:
|
|
ConcurrentMap<uint64_t, EdgeRecord> edges;
|
|
AtomicCounter<uint64_t> counter;
|
|
};
|