Gem Illuminator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros
cubegem.h
Go to the documentation of this file.
1 #ifndef GEM_H
2 #define GEM_H
3 
4 #include "abstractgem.h"
5 
10 class CubeGem : public AbstractGem
11 {
12  Q_OBJECT
13 
14 public:
15  explicit CubeGem(QObject *parent = 0);
16  virtual ~CubeGem();
17 };
18 
19 #endif // GEM_H
virtual ~CubeGem()
Definition: cubegem.cpp:91
CubeGems are gems with a shape like a cube. The only difference to AbstracGem is the fact...
Definition: cubegem.h:10
The AbstractGem class is the base class of all gems. As base class all required information of a gem...
Definition: abstractgem.h:39
CubeGem(QObject *parent=0)
Definition: cubegem.cpp:11