cpp/cpp06/ex02/Base.hpp
Alexandre POMMIER f77b0eda83 cpp06 first try
2022-08-06 19:24:08 +02:00

22 lines
983 B
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Base.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apommier <apommier@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/06 18:48:01 by apommier #+# #+# */
/* Updated: 2022/08/06 18:59:50 by apommier ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef BASE_HPP
# define BASE_HPP
class Base{
public :
virtual ~Base();
};
#endif