feat: adding files made in fablab

This commit is contained in:
Raphael 2025-03-19 16:11:05 +01:00
parent 9067bf46fc
commit 5d81e1e176
17 changed files with 885 additions and 12 deletions

View file

@ -6,12 +6,12 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/17 14:20:06 by rparodi #+# #+# */
/* Updated: 2025/03/17 22:00:37 by rparodi ### ########.fr */
/* Updated: 2025/03/18 11:49:04 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FORM_HPP
#define FORM_HPP
#ifndef Form_HPP
#define Form_HPP
#include <string>
#include <iostream>
@ -48,13 +48,13 @@ class Form {
};
std::string getName() const;
void beSigned(Bureaucrat &bureaucrat);
void beSigned(Bureaucrat const &bureaucrat) const;
int getExecute() const;
int getSign() const;
bool isSigned() const;
private:
std::string _name;
bool _signed;
mutable bool _signed;
int _to_execute;
int _to_sign;
};