cpp04/ex00/WrongDog.hpp
2025-07-04 13:51:34 +02:00

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