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