Etudes/BTS/C++/polymorphismeCours/TableBarres.h
2016-10-14 17:52:18 +02:00

22 lines
346 B
C++

#ifndef TABLEBARRES_H_INCLUDED
#define TABLEBARRES_H_INCLUDED
#include "Barre.h"
class TableBarres
{
public:
TableBarres(short _taille);
~TableBarres();
void add(Barre *pBarre);
void AfficherCatalogue();
protected:
short taille ;
short index;
// No description
Barre ** table ;
};
#endif // TABLEBARRES_H_INCLUDED