cpp/CPP04/ex00/Dog.hpp
2024-12-04 17:29:31 +01:00

17 lines
220 B
C++

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