30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* WrongCat.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/01/28 17:44:48 by rparodi #+# #+# */
|
|
/* Updated: 2025/01/31 19:37:00 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef WRONGCAT_HPP
|
|
#define WRONGCAT_HPP
|
|
|
|
#include "WrongAnimal.hpp"
|
|
#include <string>
|
|
|
|
class WrongCat : public WrongAnimal {
|
|
public:
|
|
WrongCat();
|
|
~WrongCat();
|
|
virtual void makeSound() const;
|
|
protected:
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|