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

27 lines
1.1 KiB
C++

/* ************************************************************************** */
/* */
/* :::::::: */
/* Cat.hpp :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/04/05 17:02:57 by whaffman #+# #+# */
/* Updated: 2025/04/05 17:30:47 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#pragma once
#include "Animal.hpp"
#include <string>
class Cat : public Animal
{
public:
Cat();
Cat(const Cat &cat);
~Cat() override;
Cat &operator=(const Cat &cat);
void makeSound(void) const override;
};