1 #ifndef PARSEAGLE_ROTATION_H
2 #define PARSEAGLE_ROTATION_H
3 
4 #include <QtCore>
5 
6 namespace parseagle {
7 
8 class Rotation final
9 {
10     public:
11 
12         // Constructors / Destructor
Rotation()13         Rotation() noexcept : mAngle(0.0) {}
14         explicit Rotation(const QString& str);
15         ~Rotation() noexcept;
16 
17         // Getters
getAngle()18         double getAngle() const noexcept {return mAngle;}
19 
20 
21     private:
22         double mAngle;
23 };
24 
25 } // namespace parseagle
26 
27 #endif // PARSEAGLE_ROTATION_H
28