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