Gem Illuminator
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros
tetrahedrongem.h
Go to the documentation of this file.
1 #ifndef TETRAHEDRON_H
2 #define TETRAHEDRON_H
3 
4 #include "abstractgem.h"
5 
11 {
12  Q_OBJECT
13 public:
14  explicit TetrahedronGem(QObject *parent = 0);
15  virtual ~TetrahedronGem();
16 };
17 
18 #endif // TETRAHEDRON_H
TetrahedronGem(QObject *parent=0)
Definition: tetrahedrongem.cpp:11
virtual ~TetrahedronGem()
Definition: tetrahedrongem.cpp:46
TetrahedronGems are gems with a shape like a tetrahedron. The only difference to AbstracGem is the fa...
Definition: tetrahedrongem.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