31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* WrongCat.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/07/17 10:54:02 by apommier #+# #+# */
|
|
/* Updated: 2022/07/17 11:15:05 by apommier ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef WRONGCAT_HPP
|
|
# define WRONGCAT_HPP
|
|
|
|
#include "WrongAnimal.hpp"
|
|
|
|
class WrongCat : public WrongAnimal {
|
|
public :
|
|
|
|
WrongCat();
|
|
WrongCat(const WrongCat& copy);
|
|
~WrongCat();
|
|
WrongCat &operator=(const WrongCat& rhs);
|
|
|
|
void makeSound(void) const;
|
|
|
|
private :
|
|
};
|
|
|
|
#endif |