ex02
This commit is contained in:
22
ex02/C/C.cpp
Normal file
22
ex02/C/C.cpp
Normal file
@@ -0,0 +1,22 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* C.cpp :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* 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 */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "C.hpp"
|
||||
|
||||
//////////////////
|
||||
// Constructors //
|
||||
//////////////////
|
||||
|
||||
C::~C()
|
||||
{
|
||||
// std::cout << "C destructor called" << std::endl;
|
||||
}
|
||||
28
ex02/C/C.hpp
Normal file
28
ex02/C/C.hpp
Normal file
@@ -0,0 +1,28 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* 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
|
||||
Reference in New Issue
Block a user