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