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

14 lines
183 B
C++

#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