/*
* =====================================================================================
*
* Filename: AbstractChessBoard.h
*
* Description: Representation of a chess board and pieces (no GUI)
*
* Version: 1.0
* Created: 21/02/2011 07:38:31
* Revision: none
* Compiler: gcc
*
* Author: John Ryland (jryland), jryland@xiaofrog.com
* Company: InvertedLogic
*
* =====================================================================================
*/
#ifndef __ABSTRACT_CHESS_BOARD_H__
#define __ABSTRACT_CHESS_BOARD_H__
#include <QList>
#include <AbstractChessPiece.h>
class AbstractChessBoard
{
public:
AbstractChessBoard();
~AbstractChessBoard();
QList<AbstractChessPiece*> pieces;
};
#endif // __ABSTRACT_CHESS_BOARD_H__