TP_Cpp/TP1/cellule.h

22 lines
288 B
C
Raw Permalink Normal View History

2020-05-11 20:30:41 +02:00
#include <iostream>
#include <string>
#include <typeinfo>
using namespace std;
#ifndef CELLULE_HEADER
#define CELLULE_HEADER
class cellule{
protected :
cellule *suiv;
figure *element;
public :
cellule();
cellule(figure *el);
figure *get_Element();
friend class file;
};
#endif