1
0

🔨」 fix: fixed Form class from ex01

This commit is contained in:
2025-04-01 11:09:10 +02:00
parent d56e8011de
commit 9e85ca79d9
16 changed files with 204 additions and 74 deletions

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/23 13:59:43 by adjoly #+# #+# */
/* Updated: 2025/03/30 15:10:46 by adjoly ### ########.fr */
/* Updated: 2025/04/01 10:50:00 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
@ -35,8 +35,8 @@ class Bureaucrat {
Bureaucrat(std::string name, uint8_t grade);
~Bureaucrat(void);
const std::string &getName(void);
uint8_t getGrade(void);
const std::string &getName(void) const;
uint8_t getGrade(void) const;
class GradeTooHighException : public std::exception {
public: