Advertisement
Guest User

boardprinter.h

a guest
May 6th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #ifndef BOARDPRINTER_H
  2. #define BOARDPRINTER_H
  3.  
  4. #include "Board.h"
  5.  
  6. class BoardPrinter
  7. {
  8. private:
  9.     void print_main_body(Board* board);
  10.     void print_row(Board* board, UI row);
  11.     void print_line_separating_rows(UI board_size);
  12.     void print_upper_body(UI board_size);
  13.     void print_lower_body(UI board_size);
  14.     char char_to_be_printed(Board* board, Coord coord);
  15. public:
  16.     void print(Board* board);
  17. };
  18.  
  19. #endif // BOARDPRINTER_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement