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