d01 ex05 ok

This commit is contained in:
Hugo LAMY
2022-02-08 16:32:31 +01:00
parent eac083ff7e
commit 18be528091
5 changed files with 151 additions and 0 deletions

27
d01/ex05/Karen.hpp Normal file
View File

@@ -0,0 +1,27 @@
#ifndef KAREN_HPP
# define KAREN_HPP
#include <iostream>
class Karen {
public:
Karen();
~Karen();
void complain( std::string level );
private:
void (Karen::*_fp[4])();
std::string _level[4];
void _debug( void );
void _info( void );
void _warning( void );
void _error( void );
};
#endif