memgraph/src/storage/vertex_accessor.hpp
Matija Santl 43cb506f06 Prepare codebase for high availability
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
2018-10-30 10:58:50 +01:00

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!