cpp04/ex00/Cat.hpp

15 lines
183 B
C++
Raw Permalink Normal View History

2025-05-30 08:14:26 +02:00
#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