22 lines
288 B
C
22 lines
288 B
C
|
#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
|