#ifndef DIE_H #define DIE_H #include class Die { public: Die(); void setValue(qint64 r); void insertRollValue(qint64 r); void setSelected(bool b); bool isSelected() const; qint64 getValue() const; QList getListValue() const; bool hasChildrenValue(); private: qint64 m_value; QList m_rollResult; bool m_selected; bool m_hasValue; }; #endif // DIE_H