diff options
| author | 2016-09-25 10:04:28 +0200 | |
|---|---|---|
| committer | 2016-09-25 10:04:28 +0200 | |
| commit | fac053c3aacc0e2ede8a85ff41e27eed1c360f6f (patch) | |
| tree | c91ff176e60f1f6e634107b4e7a7282e831975ee /range.h | |
| parent | dbb57d52d351e340ce69fccaedbdf758b04ed8fe (diff) | |
| parent | e225f2edfd365d1709df2cb5bb2f752ec8d82c1c (diff) | |
| download | OneRoll-fac053c3aacc0e2ede8a85ff41e27eed1c360f6f.tar.gz OneRoll-fac053c3aacc0e2ede8a85ff41e27eed1c360f6f.zip | |
Merge branch 'master' of github.com:Rolisteam/DiceParser
Diffstat (limited to 'range.h')
| -rw-r--r-- | range.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -44,11 +44,15 @@ public: qint64 getStart() const; qint64 getEnd() const; + void setEmptyRange(bool); + bool isEmptyRange(); + private: qint64 m_start; qint64 m_end; bool m_hasEnd; bool m_hasStart; + bool m_emptyRange; }; #endif // RANGE_H |