Animal finished

This commit is contained in:
2025-11-09 19:32:22 +01:00
parent 36cce8c388
commit 21a7edfacb
2 changed files with 22 additions and 1 deletions

View File

@@ -22,7 +22,11 @@ class Animal
std::string type;
public:
Animal();
~Animal();
virtual ~Animal();
Animal(const Animal &other);
Animal& operator=(const Animal &other);
virtual void makeSound() const;
};
#endif