diff options
Diffstat (limited to 'cpp06/ex02/C.cpp')
| -rw-r--r-- | cpp06/ex02/C.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cpp06/ex02/C.cpp b/cpp06/ex02/C.cpp new file mode 100644 index 0000000..81bb62a --- /dev/null +++ b/cpp06/ex02/C.cpp @@ -0,0 +1,18 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* C.cpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: charles <me@cacharle.xyz> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/11/18 09:18:09 by charles #+# #+# */ +/* Updated: 2020/11/18 09:21:01 by charles ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "C.hpp" + +C::C() {} +C::C(C const& other) { (void)other; } +C& C::operator=(C const& other) { (void)other; return *this; } +C::~C() {} |
