29 lines
1.0 KiB
C++
29 lines
1.0 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* C.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: aortigos <aortigos@student.42malaga.com> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2026/03/01 10:28:50 by aortigos #+# #+# */
|
|
/* Updated: 2026/03/01 10:28:50 by aortigos ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef C_HPP
|
|
|
|
# define C_HPP
|
|
|
|
# include <iostream>
|
|
# include "../Base/Base.hpp"
|
|
|
|
class C : public Base
|
|
{
|
|
private:
|
|
|
|
public:
|
|
~C();
|
|
};
|
|
|
|
#endif
|