-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKaren.hpp
33 lines (27 loc) · 1.13 KB
/
Karen.hpp
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Karen.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dpoveda- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/15 14:14:55 by dpoveda- #+# #+# */
/* Updated: 2022/02/15 15:13:16 by dpoveda- ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef EX05_KAREN_HPP_
# define EX05_KAREN_HPP_
# include <string>
class Karen {
public:
Karen();
~Karen();
void complain(std::string level);
private:
void debug();
void info();
void warning();
void error();
typedef void (Karen::*f)();
};
#endif