diff options
Diffstat (limited to 'cpp05/ex02/RobotomyRequestForm.hpp')
| -rw-r--r-- | cpp05/ex02/RobotomyRequestForm.hpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/cpp05/ex02/RobotomyRequestForm.hpp b/cpp05/ex02/RobotomyRequestForm.hpp new file mode 100644 index 0000000..5a722de --- /dev/null +++ b/cpp05/ex02/RobotomyRequestForm.hpp @@ -0,0 +1,29 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* RobotomyRequestForm.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <me@cacharle.xyz> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/10/19 13:43:37 by cacharle #+# #+# */ +/* Updated: 2020/10/19 13:44:17 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef ROBOTOMYREQUESTFORM_HPP +# define ROBOTOMYREQUESTFORM_HPP + +# include "Form.hpp" + +class RobotomyRequestForm : public Form +{ +public: + RobotomyRequestForm(); + RobotomyRequestForm(const RobotomyRequestForm& other); + RobotomyRequestForm& operator=(const RobotomyRequestForm& other); + ~RobotomyRequestForm(); + +private: +}; + +#endif |
