aboutsummaryrefslogtreecommitdiff
path: root/cpp06/ex02/Base.cpp
blob: 0a601fdbe224be213a492cfdd53e3d0a39390b50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   Base.cpp                                           :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <me@cacharle.xyz>                  +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/11/18 09:20:02 by charles           #+#    #+#             */
/*   Updated: 2020/11/18 09:21:22 by charles          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#include "Base.hpp"

Base::Base() {}
Base::Base(Base const& other) { (void)other; }
Base& Base::operator=(Base const& other) { (void)other; return *this; }
Base::~Base() {}