ex00: it works!

This commit is contained in:
Khaïs COLIN 2025-05-30 08:14:26 +02:00
commit 6d4b5788d7
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo
16 changed files with 318 additions and 0 deletions

14
ex00/WrongDog.hpp Normal file
View file

@ -0,0 +1,14 @@
#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