blob: aeac82e7f9f3733e559dc048c8b254dbdc5711a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
|