Hi. was asked to add the definitions of the function to overload the operators from this:
void monthsSet::unionSet (monthsSet &B)
{
for (int i=0; i<12; i++)
if (B.months[i])
months[i] = true;
};
Ive been trying for hours. Ive read my textbook and gone over my notes. Unfortunately i have been unsuccessful. any help would be greatly appreciated. Thank you in advance.