summaryrefslogtreecommitdiff
path: root/src/cell.h
blob: 5b38403a293edba7ca0eef36e3bec198c052c986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#ifndef __INCLUDED_SUDOKUSOLVER_CELL__
#define __INCLUDED_SUDOKUSOLVER_CELL__

class Cell {
	
public:
	Cell();
	
	// inspector
	inline int value() const { return cell_value; }
	
	// mutator
	void set_value(int value);
	
private:
	int cell_value;
};

#endif // __INCLUDED_SUDOKUSOLVER_CELL__