-
Notifications
You must be signed in to change notification settings - Fork 0
/
cella.h
executable file
·44 lines (29 loc) · 846 Bytes
/
cella.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#if !defined(CELLA_H)
#define CELLA_H
#include "enums.h"
using namespace std;
class cella {
private:
colore col;
tipo tp;
unsigned nodo;
public:
cella();
cella(colore c, tipo t);
cella(colore c, tipo t, unsigned i);
unsigned getNodo();
void setNodo(unsigned i);
colore getColore();
tipo getTipo();
void setTipo(tipo t);
bool operator==(cella &c) { return nodo == c.nodo; }
};
cella::cella(): col(C_NULLO), tp(T_NULLO), nodo(0) {}
cella::cella(colore c, tipo t): col(c), tp(t), nodo(0) {}
cella::cella(colore c, tipo t, unsigned i) : col(c), tp(t), nodo(i) {}
unsigned cella::getNodo() { return nodo; }
void cella::setNodo(unsigned i) { nodo = i; }
colore cella::getColore() { return col; }
tipo cella::getTipo() { return tp; }
void cella::setTipo(tipo t) {tp = t;}
#endif // CELLA_H