cpp04/ex00/WrongCat.hpp

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

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