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