| 123456789101112131415161718192021222324 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* Base.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2026/01/05 14:56:40 by bchanot #+# #+# */
- /* Updated: 2026/01/06 14:17:06 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef BASE_HPP
- # define BASE_HPP
- # include <iostream>
- # include <string>
- class Base { public: virtual ~Base() {};};
- class A : public Base {};
- class B : public Base {};
- class C : public Base {};
- #endif /* ************************************************************ BASE_H */
|