Files
42_INT_09_piscine_cpp/d01/ex05/Karen.hpp
2022-02-08 16:32:31 +01:00

28 lines
307 B
C++

#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