memgraph/storage/model/graph.hpp
2015-07-31 12:31:08 +02:00

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