// race.cpp // race needs to be a class in order for List Data Struct to work Race::Race(void) { }; Race::Race(const Race& source) { pp = source.pp; time = source.time; dist = source.dist; gate = source.gate; oneeigth = source.oneeigth; stretch = source.stretch; finish = source.finish; grade = source.grade; } void Race::operator =(const Race& source) { pp = source.pp; time = source.time; dist = source.dist; gate = source.gate; oneeigth = source.oneeigth; stretch = source.stretch; finish = source.finish; grade = source.grade; }