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/Dog.hpp Normal file
View file

@ -0,0 +1,14 @@
#ifndef DOG_HPP
#define DOG_HPP
#include "Animal.hpp"
class Dog : public Animal {
public:
Dog();
Dog(const Dog &other);
~Dog();
Dog &operator=(const Dog &other);
};
#endif