28 lines
1.2 KiB
C++
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/05 17:30:32 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;
|
|
}; |