cpp04/ex00/WrongDog.hpp

15 lines
240 B
C++
Raw Normal View History

2025-05-30 08:14:26 +02:00
#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