cpp-partie-1/cpp04/ex02/WrongCat.hpp
2024-02-20 15:35:19 +01:00

30 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* WrongCat.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/31 12:22:35 by fgras-ca #+# #+# */
/* Updated: 2023/12/31 16:21:11 by fgras-ca ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef WRONGCAT_HPP
#define WRONGCAT_HPP
#include "WrongAnimal.hpp"
class WrongCat : public WrongAnimal
{
public:
WrongCat();
WrongCat(const WrongCat &copy);
WrongCat& operator=(const WrongCat &operator_aff);
~WrongCat();
void makeSound() const;
};
#endif