Base.hpp 1.1 KB

123456789101112131415161718192021222324
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* Base.hpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2026/01/05 14:56:40 by bchanot #+# #+# */
  9. /* Updated: 2026/01/06 14:17:06 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef BASE_HPP
  13. # define BASE_HPP
  14. # include <iostream>
  15. # include <string>
  16. class Base { public: virtual ~Base() {};};
  17. class A : public Base {};
  18. class B : public Base {};
  19. class C : public Base {};
  20. #endif /* ************************************************************ BASE_H */