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/C.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cpp06/ex02/C.hpp (limited to 'cpp06/ex02/C.hpp') diff --git a/cpp06/ex02/C.hpp b/cpp06/ex02/C.hpp new file mode 100644 index 0000000..537c0c5 --- /dev/null +++ b/cpp06/ex02/C.hpp @@ -0,0 +1,22 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* C.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/04/15 09:57:24 by charles #+# #+# */ +/* Updated: 2020/04/15 10:03:30 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef C_HPP +# define C_HPP + +# include "Base.hpp" + +class C : public Base +{ +}; + +#endif -- cgit