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

32 lines
1.2 KiB
C++

/* ************************************************************************** */
/* */
/* :::::::: */
/* WrongAnimal.hpp :+: :+: */
/* +:+ */
/* By: whaffman <whaffman@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2025/04/05 17:24:04 by whaffman #+# #+# */
/* Updated: 2025/04/05 17:26:34 by whaffman ######## odam.nl */
/* */
/* ************************************************************************** */
#pragma once
#include <string>
#include <iostream>
class WrongAnimal
{
protected:
std::string type;
public:
WrongAnimal();
WrongAnimal(const WrongAnimal &animal);
virtual ~WrongAnimal();
WrongAnimal &operator=(const WrongAnimal &animal);
virtual void makeSound(void) const;
std::string getType(void) const;
};