27 lines
1.1 KiB
C++
27 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:30:41 by whaffman ######## odam.nl */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include "Animal.hpp"
|
|
#include <string>
|
|
|
|
class Dog : public Animal
|
|
{
|
|
public:
|
|
Dog();
|
|
Dog(const Dog &Dog);
|
|
~Dog() override;
|
|
Dog &operator=(const Dog &Dog);
|
|
|
|
void makeSound(void) const override;
|
|
}; |