File indexing completed on 2024-04-21 04:01:58

0001 /*
0002     SPDX-FileCopyrightText: 2007-2008 Thomas Gallinari <tg8187@yahoo.fr>
0003     SPDX-FileCopyrightText: 2007-2008 Pierre-BenoƮt Besse <besse.pb@gmail.com>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef MAZEITEM_H
0009 #define MAZEITEM_H
0010 
0011 #include <QGraphicsSvgItem>
0012 
0013 /**
0014  * @brief This class is the graphical view of the Maze.
0015  */
0016 class MazeItem : public QGraphicsSvgItem
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     /**
0022      * Creates a new MazeItem instance.
0023      */
0024     MazeItem();
0025 
0026     /**
0027      * Deletes the MazeItem instance.
0028      */
0029     ~MazeItem() override;
0030 };
0031 
0032 #endif