cpp04/ex00/Dog.hpp

15 lines
183 B
C++
Raw Permalink Normal View History

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