#include "Dependency.h" Dependency::Dependency(int p, int c, string l) { parent = p; child = c; label = l; } Dependency::~Dependency(void) { } bool Dependency::operator ==(Dependency that) { return ((parent == that.parent) && (child == that.child) && (label.compare(that.label) == 0)); }