CPP04/ex00/inc/Dog.hpp
2025-04-14 18:13:35 +02:00

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/08 10:42:51 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#pragma once
#include "Animal.hpp"
#include <string>
class Dog : public Animal
{
public:
Dog();
Dog(const Dog &other);
~Dog() override;
Dog &operator=(const Dog &other);
void makeSound(void) const override;
};