You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
974 B

2 years ago
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Base.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/09/29 10:30:30 by narnaud #+# #+# */
/* Updated: 2022/09/29 11:09:47 by narnaud ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
class Base {
public:
Base(void);
virtual ~Base(void);
};