|
|
|
|
AmortizationCalculator
and LoanCalculator
. LoanCalculator is a dependency of AmortizationCalculator, and therefore must be defined first. However you're defining it after, which is what is giving you the errors.#include "AmortizationCalculatorLab04.h"
to a line below your LoanCalculator class definition, or put your LoanCalculator in its own header and #include it before you #include "AmortizationCalculatorLab04.h".