memgraph/storage/graph.hpp
2015-07-04 11:39:16 +02:00

14 lines
162 B
C++

#ifndef MEMGRAPH_DATA_MODEL_GRAPH_HPP
#define MEMGRAPH_DATA_MODEL_GRAPH_HPP
#include <vector>
#include "node.hpp"
#include "edge.hpp"
struct Graph
{
}
#endif