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/Cat.hpp Normal file
View File

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