init: ex06 ex05

This commit is contained in:
Camille Chauvet
2023-05-26 16:50:46 +00:00
parent 84b0db8c9c
commit dcfb2af057
8 changed files with 223 additions and 0 deletions

16
ex05/src/Harl.hpp Normal file
View File

@ -0,0 +1,16 @@
#pragma once
#include <string>
class Harl
{
private:
void debug() const;
void info() const;
void warning() const;
void error() const;
public:
void complain(std::string level);
};
typedef void (Harl::*HarlMethod)() const;