There is a mistake in account.cpp:
Code:
Account* createAccount(Subject* subject, std::string& type, int saving_period, int month,  int year)
should be
Code:
Account* Account::createAccount(Subject* subject, 
std::string& type, int saving_period, int month,  int year)