#include using namespace std; class edge //this is really half and edge, since it is missing the other vertex. { public: int vertex; int label; edge(int v, int s); virtual ~edge(); };