mirror of
https://github.com/Ladebeze66/cpp-partie-1.git
synced 2025-12-16 05:58:04 +01:00
30 lines
1.1 KiB
C++
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:31:44 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef WRONGCAT_HPP
|
|
#define WRONGCAT_HPP
|
|
|
|
#include "WrongAnimal.hpp"
|
|
|
|
class WrongCat : public WrongAnimal
|
|
{
|
|
public:
|
|
WrongCat();
|
|
WrongCat(const WrongCat ©);
|
|
WrongCat& operator=(const WrongCat &operator_aff);
|
|
~WrongCat();
|
|
|
|
void makeSound() const;
|
|
};
|
|
|
|
#endif
|