1
0
This repository has been archived on 2025-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
CPP_Module_04/ex02/WrongCat.hpp

26 lines
1.1 KiB
C++
Raw Permalink Normal View History

2024-12-06 16:24:15 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* WrongCat.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/01 19:06:08 by adjoly #+# #+# */
/* Updated: 2024/12/06 15:55:47 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "WrongAnimal.hpp"
class WrongCat : public WrongAnimal {
public:
WrongCat(void);
~WrongCat(void);
WrongCat(const WrongCat &);
WrongCat &operator=(const WrongCat &);
void makeSound(void) const;
};