mirror of
https://github.com/Ladebeze66/cpp-partie-2.git
synced 2025-12-16 14:07:54 +01:00
22 lines
979 B
C++
22 lines
979 B
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Base.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <fgras-ca@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/02/27 14:23:13 by fgras-ca #+# #+# */
|
|
/* Updated: 2024/02/27 15:02:16 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef BASE_HPP
|
|
#define BASE_HPP
|
|
|
|
class Base
|
|
{
|
|
public:
|
|
virtual ~Base() {};
|
|
};
|
|
|
|
#endif |