/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: apommier +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2022/07/18 21:34:45 by apommier #+# #+# */ /* Updated: 2022/08/04 19:38:41 by apommier ### ########.fr */ /* */ /* ************************************************************************** */ #include "AForm.hpp" #include "Bureaucrat.hpp" int main() { try { Bureaucrat First(151, "john"); } catch(std::exception &e) { std::cout << e.what(); return (-1); } //ShrubberyCreationForm test; //test.execute() return (0); }