1/*
2 * Copyright 2007-2008 Thomas Gallinari <tg8187@yahoo.fr>
3 * Copyright 2007-2008 Pierre-BenoƮt Besse <besse.pb@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#ifndef MAZEITEM_H
20#define MAZEITEM_H
21
22#include <QGraphicsSvgItem>
23
24/**
25 * @brief This class is the graphical view of the Maze.
26 */
27class MazeItem : public QGraphicsSvgItem {
28
29 Q_OBJECT
30
31 public:
32
33 /**
34 * Creates a new MazeItem instance.
35 */
36 MazeItem();
37
38 /**
39 * Deletes the MazeItem instance.
40 */
41 ~MazeItem();
42};
43
44#endif
45
46