#ifndef DOG_HPP #define DOG_HPP #include "Animal.hpp" class Dog : public Animal { public: Dog(); Dog(const Dog &other); ~Dog(); Dog &operator=(const Dog &other); }; #endif