17 lines
289 B
C++
17 lines
289 B
C++
#ifndef _LOUP_HPP_
|
|
#define _LOUP_HPP_ 1
|
|
|
|
#include "animal.hpp"
|
|
|
|
class Loup: public Animal {
|
|
public:
|
|
Loup(void);
|
|
~Loup(void);
|
|
|
|
bool carnivore(void) const noexcept;
|
|
|
|
// Représenté par "2" dans l'univers
|
|
short id(void) const noexcept;
|
|
};
|
|
|
|
#endif
|