blob: 81bb62a9e3354ce8f158ac24f9ceea01c26aec1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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() {}
|