14 lines
226 B
C++
14 lines
226 B
C++
|
#pragma once
|
||
|
|
||
|
#ifdef MG_SINGLE_NODE
|
||
|
#include "storage/single_node/gid.hpp"
|
||
|
#endif
|
||
|
|
||
|
#ifdef MG_SINGLE_NODE_HA
|
||
|
#include "storage/single_node_ha/gid.hpp"
|
||
|
#endif
|
||
|
|
||
|
#ifdef MG_DISTRIBUTED
|
||
|
#include "storage/distributed/gid.hpp"
|
||
|
#endif
|