aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/diceresult.h
diff options
context:
space:
mode:
Diffstat (limited to 'diceresult.h')
-rw-r--r--diceresult.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/diceresult.h b/diceresult.h
index 93fb668..42f7e5c 100644
--- a/diceresult.h
+++ b/diceresult.h
@@ -11,15 +11,15 @@ public:
DiceResult();
qint64 getSum();
- QList<Die>& getResultList();
- void insertResult(Die);
+ QList<Die*>& getResultList();
+ void insertResult(Die*);
- void setResultList(QList<Die> list);
+ void setResultList(QList<Die*> list);
bool isScalar() const;
virtual qint64 getScalar();
private:
- QList<Die> m_diceValues;
+ QList<Die*> m_diceValues;
};
#endif // DICERESULT_H