I have to build a class that stores an array of fractions (a previous class that I built). I already built my fraction class and this class i am building is called FList.
int currentSize;
Fraction newList[MAXSIZE]; //where MAXSIZE is a const.
It keeps throwing me compiler errors and I am not sure how to fix it. I just need my array to be able to hold the Fraction objects that are passed in. I am struggling on this very badly. If anyone could help that would be great!