-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWrongAnimal.hpp
More file actions
34 lines (28 loc) · 1.21 KB
/
WrongAnimal.hpp
File metadata and controls
34 lines (28 loc) · 1.21 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
30
31
32
33
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* WrongAnimal.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: zelhajou <zelhajou@student.1337.ma> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/15 21:23:26 by zelhajou #+# #+# */
/* Updated: 2024/06/15 21:35:55 by zelhajou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef WRONGANIMAL_HPP
# define WRONGANIMAL_HPP
# include <iostream>
# include <string>
class WrongAnimal
{
protected:
std::string type;
public:
WrongAnimal();
WrongAnimal(const WrongAnimal& other);
WrongAnimal& operator=(const WrongAnimal& other);
virtual ~WrongAnimal();
void makeSound() const;
std::string getType() const;
};
#endif