32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Dog.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/01/28 17:44:51 by rparodi #+# #+# */
|
|
/* Updated: 2025/02/07 17:51:39 by rparodi ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef DOG_HPP
|
|
#define DOG_HPP
|
|
|
|
#include "Animal.hpp"
|
|
#include "Brain.hpp"
|
|
#include <string>
|
|
|
|
class Dog : public Animal {
|
|
public:
|
|
Dog();
|
|
~Dog();
|
|
virtual void makeSound() const;
|
|
protected:
|
|
|
|
private:
|
|
Brain *brain;
|
|
|
|
};
|
|
|
|
#endif
|