cpp04/ex02/WrongCat.hpp

19 lines
376 B
C++

#ifndef WrongCat_HPP
# define WrongCat_HPP
# include <iostream>
# include "WrongAnimal.hpp"
class WrongCat : public WrongAnimal
{
public :
WrongCat();
WrongCat(std::string type);
WrongCat(const WrongCat &other);
virtual ~WrongCat();
WrongCat & operator=(const WrongCat &other);
virtual void makeSound() const;
};
#endif