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