diff options
Diffstat (limited to 'cpp06/ex02/B.hpp')
| -rw-r--r-- | cpp06/ex02/B.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cpp06/ex02/B.hpp b/cpp06/ex02/B.hpp new file mode 100644 index 0000000..aeac82e --- /dev/null +++ b/cpp06/ex02/B.hpp @@ -0,0 +1,22 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* B.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/04/15 09:57:12 by charles #+# #+# */ +/* Updated: 2020/04/15 10:07:52 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef B_HPP +# define B_HPP + +# include "Base.hpp" + +class B : public Base +{ +}; + +#endif |
