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.
21 lines
982 B
21 lines
982 B
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* A.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2022/09/29 10:32:10 by narnaud #+# #+# */
|
|
/* Updated: 2022/09/29 11:08:51 by narnaud ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include "Base.hpp"
|
|
|
|
class A:public Base {
|
|
public:
|
|
A(void);
|
|
|
|
};
|
|
|