17 lines
247 B
C++
17 lines
247 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "./WrongAnimal.hpp"
|
|
|
|
class WrongCat : public WrongAnimal
|
|
{
|
|
public:
|
|
WrongCat(const WrongCat& src);
|
|
WrongCat &operator=(const WrongCat& src);
|
|
WrongCat();
|
|
~WrongCat();
|
|
|
|
void makeSound() const;
|
|
};
|