blob: 0ec092b6b174e94be2e507ab632c2f020e5fed06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Base.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/15 09:56:24 by charles #+# #+# */
/* Updated: 2020/11/18 09:16:48 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef BASE_HPP
# define BASE_HPP
class Base
{
public:
Base();
Base(Base const& other);
Base& operator=(Base const& other);
virtual ~Base();
};
#endif
|