「✨」 feat(Ex00): working
This commit is contained in:
25
ex00/WrongCat.hpp
Normal file
25
ex00/WrongCat.hpp
Normal file
@ -0,0 +1,25 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* WrongCat.hpp :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/12/01 19:06:08 by adjoly #+# #+# */
|
||||
/* Updated: 2024/12/04 13:49:47 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "animal.hpp"
|
||||
|
||||
class WrongCat : public Animal {
|
||||
public:
|
||||
WrongCat(void);
|
||||
~WrongCat(void);
|
||||
WrongCat(const WrongCat &);
|
||||
WrongCat &operator=(const WrongCat &);
|
||||
|
||||
void makeSound(void) const;
|
||||
};
|
Reference in New Issue
Block a user