diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-11-08 13:39:12 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-11-08 13:39:12 +0100 |
| commit | 1e9d90bdf9ef5fc05093d3449d883597c7f896de (patch) | |
| tree | cc5334baec6ec10a0d99bc925499512bc44f2cd0 /cpp06/ex02/C.hpp | |
| parent | c426fe76ec5925e8c94aae3db04e5e1f1ce1585e (diff) | |
| download | piscine_cpp-1e9d90bdf9ef5fc05093d3449d883597c7f896de.tar.gz piscine_cpp-1e9d90bdf9ef5fc05093d3449d883597c7f896de.tar.bz2 piscine_cpp-1e9d90bdf9ef5fc05093d3449d883597c7f896de.zip | |
Added cpp06 boilerplate
Diffstat (limited to 'cpp06/ex02/C.hpp')
| -rw-r--r-- | cpp06/ex02/C.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* 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 |
