This commit is contained in:
Hugo LAMY
2022-02-24 17:12:17 +01:00
parent 0d5993dd5a
commit ba3b88f0bf
15 changed files with 507 additions and 8 deletions

27
d04/Dog.hpp Normal file
View File

@@ -0,0 +1,27 @@
#ifndef DOG_HPP
# define DOG_HPP
# include "Animal.hpp"
# include <iostream>
# include <string>
class Dog : public Animal {
public:
Dog( void );
Dog( Dog const & src );
~Dog( void );
Dog & operator=( Dog const & rhs );
void makeSound() const;
protected:
private:
};
#endif