ex00: it works!
This commit is contained in:
commit
6d4b5788d7
16 changed files with 318 additions and 0 deletions
14
ex00/Cat.hpp
Normal file
14
ex00/Cat.hpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef CAT_HPP
|
||||
#define CAT_HPP
|
||||
|
||||
#include "Animal.hpp"
|
||||
|
||||
class Cat : public Animal {
|
||||
public:
|
||||
Cat();
|
||||
Cat(const Cat &other);
|
||||
~Cat();
|
||||
Cat &operator=(const Cat &other);
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue