17 lines
292 B
C++
17 lines
292 B
C++
#ifndef _MOUTON_HPP_
|
|
#define _MOUTON_HPP_ 1
|
|
|
|
#include "animal.hpp"
|
|
|
|
class Mouton: public Animal {
|
|
int generationVitesse(void) const noexcept;
|
|
|
|
public:
|
|
Mouton(int);
|
|
Mouton(int, int, int);
|
|
|
|
// Renvoie faux
|
|
bool carnivore(void) const noexcept;
|
|
};
|
|
|
|
#endif
|