#ifndef GRAPH_H #define GRAPH_H #include #include #include "CityNode.h" #include "RoadNode.h" using namespace std ; class Graph { private: CityNode * AdjacencyList ; public: Graph() ; ~Graph() ; int Dijkstra(string, string) ; void InsertCity(string) ; void InsertRoad(string, string, int) ; }; #endif