From 1e9d90bdf9ef5fc05093d3449d883597c7f896de Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 8 Nov 2020 13:39:12 +0100 Subject: Added cpp06 boilerplate --- cpp06/ex02/A.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cpp06/ex02/A.hpp (limited to 'cpp06/ex02/A.hpp') diff --git a/cpp06/ex02/A.hpp b/cpp06/ex02/A.hpp new file mode 100644 index 0000000..30c68d5 --- /dev/null +++ b/cpp06/ex02/A.hpp @@ -0,0 +1,22 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* A.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/04/15 09:56:52 by charles #+# #+# */ +/* Updated: 2020/04/15 10:03:37 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef A_HPP +# define A_HPP + +# include "Base.hpp" + +class A : public Base +{ +}; + +#endif -- cgit