aboutsummaryrefslogtreecommitdiff
path: root/cpp06/ex02/B.hpp
blob: c9e4a44c8cdd9a3e133bb133918460e8194c36eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   B.hpp                                              :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/04/15 09:57:12 by charles           #+#    #+#             */
/*   Updated: 2020/11/18 09:22:13 by charles          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef B_HPP
# define B_HPP

# include "Base.hpp"

class B : public Base
{
public:
    B();
    B(B const& other);
    B& operator=(B const& other);
    virtual ~B();
};

#endif