aboutsummaryrefslogtreecommitdiff
path: root/cpp06/ex02/Base.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp06/ex02/Base.hpp')
-rw-r--r--cpp06/ex02/Base.hpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/cpp06/ex02/Base.hpp b/cpp06/ex02/Base.hpp
new file mode 100644
index 0000000..c70706a
--- /dev/null
+++ b/cpp06/ex02/Base.hpp
@@ -0,0 +1,22 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* Base.hpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/04/15 09:56:24 by charles #+# #+# */
+/* Updated: 2020/04/15 09:56:41 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef BASE_HPP
+# define BASE_HPP
+
+class Base
+{
+public:
+ virtual ~Base();
+};
+
+#endif