-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWrongCat.hpp
More file actions
29 lines (24 loc) · 1.13 KB
/
WrongCat.hpp
File metadata and controls
29 lines (24 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* WrongCat.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/15 21:40:00 by zelhajou #+# #+# */
/* Updated: 2024/06/15 21:40:21 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef WRONGCAT_HPP
# define WRONGCAT_HPP
# include "WrongAnimal.hpp"
class WrongCat : public WrongAnimal
{
public:
WrongCat();
WrongCat(const WrongCat& other);
WrongCat& operator=(const WrongCat& other);
~WrongCat();
void makeSound() const;
};
#endif