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/animal.hpp

16 lines
268 B
C++
Raw Normal View History

#ifndef _ANIMAL_HPP_
#define _ANIMAL_HPP_ 1
#include "organisme.hpp"
class Animal: public Organisme {
public:
Animal(void);
virtual ~Animal(void);
// Animal carnivore ?
virtual bool carnivore(void) const noexcept = 0;
};
#endif