This repository has been archived on 2022-05-02. You can view files and clone it, but cannot push or open issues or pull requests.
Ecosysteme/includes/mouton.hpp

18 lines
292 B
C++
Raw Normal View History

#ifndef _MOUTON_HPP_
#define _MOUTON_HPP_ 1
#include "animal.hpp"
class Mouton: public Animal {
2022-04-04 00:10:51 +02:00
int generationVitesse(void) const noexcept;
public:
2022-04-04 00:10:51 +02:00
Mouton(int);
Mouton(int, int, int);
2022-04-04 00:10:51 +02:00
// Renvoie faux
bool carnivore(void) const noexcept;
};
#endif