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

14 lines
240 B
C++

#ifndef WRONG_CAT_HPP
#define WRONG_CAT_HPP
#include "WrongAnimal.hpp"
class WrongCat : public WrongAnimal {
public:
WrongCat();
WrongCat(const WrongCat &other);
~WrongCat();
WrongCat &operator=(const WrongCat &other);
};
#endif