17 #include <domains/tic_tac_toe/board.h> 18 #include <domains/tic_tac_toe/player.h> 28 void newGame(tic_tac_toe::Player* x_player, tic_tac_toe::Player* o_player);
34 const tic_tac_toe::Board& board()
const {
return board_; }
36 tic_tac_toe::Player* currentPlayer()
const;
39 void historyToFirst();
41 void historyToPrevious();
48 void applyMove(
int move);
49 void undoMove(
int move);
52 tic_tac_toe::Player* x_player_ =
nullptr;
53 tic_tac_toe::Player* o_player_ =
nullptr;
55 tic_tac_toe::Board board_;
58 vector<int> moves_history_;
59 size_t active_moves_ = 0;
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
Definition: board_widget.cpp:26