add: ex05

This commit is contained in:
2023-07-18 03:28:41 +02:00
parent 636365d65c
commit eb2b035b75
4 changed files with 107 additions and 0 deletions

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

@ -0,0 +1,17 @@
#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;