d01 ex05 ok
This commit is contained in:
27
d01/ex05/Karen.hpp
Normal file
27
d01/ex05/Karen.hpp
Normal 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
|
||||
Reference in New Issue
Block a user