feat: finishing the ex02 of the module 06

This commit is contained in:
Raphael 2025-03-26 14:06:49 +01:00
parent 74058def09
commit 62a2eb5e90
7 changed files with 365 additions and 0 deletions

22
cpp06/ex02/includes/C.hpp Normal file
View file

@ -0,0 +1,22 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* C.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/26 12:07:18 by rparodi #+# #+# */
/* Updated: 2025/03/26 12:45:21 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "Base.hpp"
class C : public Base {
public:
virtual ~C() {
std::cout << "C destructor" << std::endl;
}
};