blob: f5cced860b1010ae6321d55277de5a633fd39683 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Harl.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/12 10:37:12 by dkaiser #+# #+# */
/* Updated: 2025/02/12 13:38:42 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#include "Harl.hpp"
#include <iostream>
void Harl::complain(std::string level)
{
std::string levels[4] = {"DEBUG", "INFO", "WARNING", "ERROR"};
int i = 0;
while (level != levels[i])
{
if (i > 3)
break;
i++;
}
switch (i)
{
case 0:
this->debug();
case 1:
this->info();
case 2:
this->warning();
case 3:
this->error();
break;
default:
std::cout << "[ Probably complaining ";
std::cout << "about insignificant problems ]" << std::endl;
break;
}
}
void Harl::debug(void)
{
std::cout << "I love having extra bacon for my ";
std::cout << "7XL-double-cheese-triple-pickle-special-ketchup burger. ";
std::cout << "I really do!" << std::endl;
}
void Harl::info(void)
{
std::cout << "I cannot believe adding extra bacon costs more money. ";
std::cout << "You didn’t put enough bacon in my burger! ";
std::cout << "If you did, I wouldn’t be asking for more!" << std::endl;
}
void Harl::warning(void)
{
std::cout << "I think I deserve to have some extra bacon for free. ";
std::cout << "I’ve been coming for years whereas you ";
std::cout << "started working here since last month." << std::endl;
}
void Harl::error(void)
{
std::cout << "This is unacceptable! I want to speak to the manager now.";
std::cout << std::endl;
}
|