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