blob: 133e61d184aaf0992828aad7e2871fb5eaeabe0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* B.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: charles <me@cacharle.xyz> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/11/18 09:18:09 by charles #+# #+# */
/* Updated: 2020/11/18 09:21:15 by charles ### ########.fr */
/* */
/* ************************************************************************** */
#include "B.hpp"
B::B() {}
B::B(B const& other) { (void)other; }
B& B::operator=(B const& other) { (void)other; return *this; }
B::~B() {}
|