Files
cpp06/ex02/B/B.hpp
2026-03-01 10:43:15 +01:00

29 lines
1.0 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* B.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/03/01 10:28:49 by aortigos #+# #+# */
/* Updated: 2026/03/01 10:28:49 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef B_HPP
# define B_HPP
# include <iostream>
# include "../Base/Base.hpp"
class B : public Base
{
private:
public:
~B();
};
#endif