Newer
Older
Import / applications / Chess / AbstractChessBoard.h
@John Ryland John Ryland on 22 Dec 2020 819 bytes import NUC files
/*
 * =====================================================================================
 *
 *       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__