Incendie
Main Page
Related Pages
Classes
Files
File List
Moteur
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
Cellule
Definition:
cellule.h:4
Generated by
1.8.11