From 0071b1e944cbce91ff6ff8e235280c3955ce1d5b Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 12 Dec 2020 12:33:39 +0100 Subject: Fixing cpp05 small errors --- cpp05/ex03/Form.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'cpp05/ex03/Form.hpp') diff --git a/cpp05/ex03/Form.hpp b/cpp05/ex03/Form.hpp index 78828da..79e78fa 100644 --- a/cpp05/ex03/Form.hpp +++ b/cpp05/ex03/Form.hpp @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/14 19:19:45 by charles #+# #+# */ -/* Updated: 2020/11/17 17:09:15 by charles ### ########.fr */ +/* Updated: 2020/12/12 12:20:25 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -24,7 +24,7 @@ class Form public: Form(Form const& other); Form& operator=(Form const& other); - ~Form(); + virtual ~Form(); Form(std::string const& name, int gradeSign, int gradeExecute); @@ -34,7 +34,6 @@ public: int getGradeExecute() const; void beSigned(Bureaucrat const& b); - void execute(Bureaucrat const& executor) const; protected: -- cgit