This commit is contained in:
Hugo LAMY
2022-02-09 12:25:12 +01:00
parent 18be528091
commit a653ad05a9
5 changed files with 168 additions and 0 deletions

27
d01/ex06/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