mirror of
https://github.com/Ladebeze66/cpp-partie-2.git
synced 2025-12-16 22:17:53 +01:00
21 lines
974 B
C++
21 lines
974 B
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* B.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/02/27 14:26:30 by fgras-ca #+# #+# */
|
|
/* Updated: 2024/02/27 14:48:12 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef B_HPP
|
|
#define B_HPP
|
|
|
|
#include "Base.hpp"
|
|
|
|
class B: public Base
|
|
{};
|
|
|
|
#endif |