17 lines
267 B
C++
17 lines
267 B
C++
#ifndef WRONGCAT_HPP
|
|
# define WRONGCAT_HPP
|
|
|
|
#include "WrongAnimal.hpp"
|
|
|
|
class WrongCat : public WrongAnimal {
|
|
public:
|
|
WrongCat();
|
|
~WrongCat();
|
|
WrongCat(const WrongCat &other);
|
|
WrongCat& operator=(const WrongCat &other);
|
|
|
|
void makeSound() const;
|
|
};
|
|
|
|
#endif
|