// edge.cpp: implementation of the edge class. // ////////////////////////////////////////////////////////////////////// #include "edge.h" ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// edge::edge(int v, int s) { vertex = v; label = s; } edge::~edge() { }