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

17 lines
220 B
C++

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