Etudes/BTS/C++/polymorphismeCours/TableBarres.h

22 lines
346 B
C
Raw Normal View History

2016-10-14 15:52:18 +00:00
#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