#include using namespace std;class SimpleCat { public: SimpleCat(); ~SimpleCat(); int GetAge() const { return *itsAge; } void SetAge(int age) { *itsAge = age; } int GetWeight() const { return *itsWeight; } void SetWeight (int weight) { *itsWeight = weight; } private: int *itsAge; int *itsWeight; };SimpleCat::SimpleCat() { itsAge = new int(2); itsWeight = new int(5); }SimpleCat::~SimpleCat() { de..