Summary: Initial for fork (in form of a c/p) form the current single node version. Once we finish HA we plan to re-link the files to the single node versions if they don't change. Reviewers: ipaljak, buda, mferencevic Reviewed By: ipaljak Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1705
16 lines
316 B
C++
16 lines
316 B
C++
#pragma once
|
|
|
|
#ifdef MG_SINGLE_NODE
|
|
#include "storage/single_node/vertex_accessor.hpp"
|
|
#endif
|
|
|
|
#ifdef MG_SINGLE_NODE_HA
|
|
#include "storage/single_node_ha/vertex_accessor.hpp"
|
|
#endif
|
|
|
|
#ifdef MG_DISTRIBUTED
|
|
#include "storage/distributed/vertex_accessor.hpp"
|
|
#endif
|
|
|
|
// TODO: write documentation for the interface here!
|