-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBoard.h
More file actions
39 lines (30 loc) · 756 Bytes
/
Board.h
File metadata and controls
39 lines (30 loc) · 756 Bytes
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
#ifndef BOARD_H
#define BOARD_H
#include <string>
#include <vector>
#include "BoardRow.h"
class Board
{
public:
// Constructor
Board();
Board(short maxGuesses, short codeLength);
// Destructor
~Board();
// Accessor functions
const std::vector<BoardRow>& getAllRows() const;
size_t getGuessLen() const;
short getCurrentRows() const;
short getMaxRows() const;
short getUnusedGuesses() const;
// Mutator functions
void addRow(BoardRow newRow);
void emptyBoard();
private:
bool isValidRow(BoardRow row);
std::vector<BoardRow> allRows;
size_t guessLen; // the number of characters in a guess
short currentRows;
short maxRows;
};
#endif