Skip to content

Instantly share code, notes, and snippets.

@trevorrjohn
Created November 19, 2012 04:43
Show Gist options
  • Save trevorrjohn/4109015 to your computer and use it in GitHub Desktop.
Save trevorrjohn/4109015 to your computer and use it in GitHub Desktop.
A5
struct Position {
char value;
// some other attributes
};
class Board {
public:
Board();
Board(string filename); //another constructor given a filename
~Board();
private:
Position board[ROWS][COLS];
// more methods
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment