ex00: it works!
This commit is contained in:
commit
6d4b5788d7
16 changed files with 318 additions and 0 deletions
14
ex00/Dog.hpp
Normal file
14
ex00/Dog.hpp
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue