17 lines
187 B
C++
17 lines
187 B
C++
#ifndef MEMGRAPH_DATA_MODEL_GRAPH_HPP
|
|
#define MEMGRAPH_DATA_MODEL_GRAPH_HPP
|
|
|
|
#include <list>
|
|
|
|
#include "vertex.hpp"
|
|
#include "edge.hpp"
|
|
|
|
class Graph
|
|
{
|
|
|
|
private:
|
|
std::list<
|
|
};
|
|
|
|
#endif
|