14 lines
162 B
C++
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
|