-
Notifications
You must be signed in to change notification settings - Fork 0
/
cella.h
53 lines (51 loc) · 1.2 KB
/
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
45
46
47
48
49
50
51
52
53
#ifndef CELLA_H
#define CELLA_H
#include "candidati.h"
#include "pos.h"
/**
* Classe Cella
* Contiene tutte le informazioni relative a una cella
*/
class Cella : public Candidati, public Pos
{
private:
int m_value;
bool m_settato; //se e' stato determinato
public:
/**
* Costruttore di default, setta il valore a 0 e a non settato, esegue TCandidati
*/
Cella();
/**
* Setta il valore iniziale, esegue TCandidati, e' settato
*/
Cella(int valore);
/**
* Copy constructor
*/
Cella(const Cella &old);
/**
* Ritorna il valore, 0 se non e' settato
*/
int value() const {return m_value;}
/**
* Setta il valore, imposta come settato, esegue TFuturo
*/
void value(int valore);
/**
* Ritorna se e' settato
*/
inline bool settato() const {return m_settato;};
/**
* Esegue TCandidati::determinato, se esiste un solo valore possibile, allora setta m_value al valore e lo mette settato
*/
bool controlla();
/**
* Azzera la cella
*/
void azzera();
bool operator==(const Cella&) const;
bool operator!=(const Cella&) const;
Cella& operator=(const Cella& altro);
};
#endif