change to final_test

Dependencies:   4DGL-uLCD-SE EthernetInterface HTTPClient mbed-rtos mbed

Fork of Fianl_test by Hongyao Shi

Revision:
0:28f8ba171e86
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/board.h	Mon Apr 20 23:05:36 2015 +0000
@@ -0,0 +1,18 @@
+
+
+class Board
+{
+    public:
+    int check_victory(int playerID);
+    void update_board(Board other_board);
+    int ** get_board();
+    void set_board(int col, int row, int playerID);
+    bool updateBoard(int turn, int printout);
+    int updateBoard_output(int turn, int printout);
+    void printBoard();
+    int turn;
+    Board(void);
+        
+    private:
+    int **board;
+};
\ No newline at end of file