2015-07-04 17:39:16 +08:00
|
|
|
#ifndef MEMGRAPH_DATA_MODEL_GRAPH_HPP
|
|
|
|
#define MEMGRAPH_DATA_MODEL_GRAPH_HPP
|
|
|
|
|
2015-07-31 18:31:08 +08:00
|
|
|
#include <list>
|
2015-07-04 17:39:16 +08:00
|
|
|
|
2015-07-31 18:31:08 +08:00
|
|
|
#include "vertex.hpp"
|
2015-07-04 17:39:16 +08:00
|
|
|
#include "edge.hpp"
|
|
|
|
|
2015-07-31 18:31:08 +08:00
|
|
|
class Graph
|
2015-07-04 17:39:16 +08:00
|
|
|
{
|
2015-07-31 18:31:08 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::list<
|
|
|
|
};
|
2015-07-04 17:39:16 +08:00
|
|
|
|
|
|
|
#endif
|