#ifndef PROPERTY_H #define PROPERTY_H #include "tax.h" using namespace std; class property: public tax { public: property(): tax {"property"} {} double amount(double x) const override {return x + 100.00;} }; #endif