summaryrefslogtreecommitdiff
path: root/examples/hierarchy/Chess.h
blob: 9b050fcf24271a3c4a0e924246fa3e9c258cb0c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __CHESS_H__
#define __CHESS_H__

#include "BoardGame.h"

class Chess: public BoardGame {
  public:
    virtual int getNumberOfPieces() const;
};

#endif