cpp04/ex00/Cat.hpp
2025-07-04 13:51:34 +02:00

14 lines
183 B
C++

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