#ifndef CITYNODE_H #define CITYNODE_H #include #include #include "RoadNode.h" using namespace std ; struct CityNode{ string city ; RoadNode * headptr ; CityNode * next ; bool InTree ; int PathLength ; }; #endif