14 lines
240 B
C++
14 lines
240 B
C++
#ifndef WRONG_CAT_HPP
|
|
#define WRONG_CAT_HPP
|
|
|
|
#include "WrongAnimal.hpp"
|
|
|
|
class WrongCat : public WrongAnimal {
|
|
public:
|
|
WrongCat();
|
|
WrongCat(const WrongCat &other);
|
|
~WrongCat();
|
|
WrongCat &operator=(const WrongCat &other);
|
|
};
|
|
|
|
#endif
|