CPP04/ex01/inc/Dog.hpp
2025-04-07 17:47:36 +02:00

31 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* :::::::: */
/* Dog.hpp :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/04/05 17:04:03 by whaffman #+# #+# */
/* Updated: 2025/04/05 17:49:51 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#pragma once
#include "Animal.hpp"
#include "Brain.hpp"
#include <string>
class Dog : public Animal
{
private:
Brain *brain;
public:
Dog();
Dog(const Dog &Dog);
~Dog() override;
Dog &operator=(const Dog &Dog);
void makeSound(void) const override;
};