#include #include "FarmT.h" using namespace std; FarmT::FarmT(WarehouseT w): BuildingT(w, BuildingTypeT::FARM) { cout << "In the FarmT class, building a farm" << endl; } void FarmT::Produce(WarehouseT /*w*/){ cout << "A Farm is producing" << endl; // cout << "But I can Make the building produce too" << endl; // BuildingT::Produce(w); }