CPP04/ex00/inc/WrongCat.hpp
2025-04-17 14:05:53 +02:00

28 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* :::::::: */
/* WrongCat.hpp :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/04/05 17:23:37 by whaffman #+# #+# */
/* Updated: 2025/04/17 13:47:48 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#pragma once
#include "WrongAnimal.hpp"
#include <string>
#include <iostream>
class WrongCat : public WrongAnimal
{
public:
WrongCat();
WrongCat(const WrongCat &cat);
~WrongCat() override;
WrongCat &operator=(const WrongCat &cat);
void makeSound(void) const override;
};