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

17 lines
267 B
C++

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