42_CPP04/ex02/src/Dog.hpp
Camille Chauvet 037daaf8e9 add ex02
2023-08-09 14:51:00 +00:00

21 lines
254 B
C++

#pragma once
#include <string>
#include "./AAnimal.hpp"
#include "./Brain.hpp"
class Dog : public AAnimal
{
public:
Dog(const Dog& src);
Dog &operator=(const Dog& src);
Dog();
~Dog();
void makeSound() const;
private:
Brain* brain;
};