Tortues_CPP/include/PiocheDeTortues.h

23 lines
386 B
C
Raw Normal View History

2020-04-25 18:09:05 +02:00
#ifndef PIOCHEDETORTUES_H
#define PIOCHEDETORTUES_H
2020-05-04 17:19:21 +02:00
#include <vector>
#include "Tortue.h"
2020-04-25 18:09:05 +02:00
2020-05-04 17:19:21 +02:00
using namespace std;
2020-04-25 18:09:05 +02:00
class PiocheDeTortues
{
public:
PiocheDeTortues();
2020-05-04 17:19:21 +02:00
void afficherPiocheDeTortues();
Tortue* piocherTortue();
2020-04-25 18:09:05 +02:00
virtual ~PiocheDeTortues();
protected:
private:
2020-05-04 17:19:21 +02:00
vector<Tortue*> liste_tortues;
2020-04-25 18:09:05 +02:00
};
#endif // PIOCHEDETORTUES_H