Incendie
cellule.h
1 #ifndef CELLULE_H
2 #define CELLULE_H
3 
4 class Cellule
5 {
6 
7 public:
8 
9 // Constructors
10 // Cellule();
11 // Cellule(const Cellule& other);
12 virtual ~Cellule() =0;
13 
14 // Cellule& operator=(Cellule cell);
15 
16  // Getters and setters
17  virtual int getState() const =0;
18 
19  // Other methods
20 
21 };
22 
23 #endif // CELLULE_H
Definition: cellule.h:4