18 lines
375 B
C++
18 lines
375 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 |