cpp/CPP05/ex02/ShrubberyCreationForm.hpp
2024-12-04 17:29:31 +01:00

12 lines
195 B
C++

#pragma once
#include "AForm.hpp"
class ShrubberyCreationForm : public AForm {
public :
ShrubberyCreationForm();
ShrubberyCreationForm(std::string name);
void executeAction() const;
};