diff options
Diffstat (limited to 'cpp06/ex02/A.hpp')
| -rw-r--r-- | cpp06/ex02/A.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* 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 |
