#ifndef ROADNODE_H #define ROADNODE_H #include #include using namespace std ; struct RoadNode{ string ToCity ; int distanct ; RoadNode * next ; bool InTree ; }; #endif