aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/diceresult.h
diff options
context:
space:
mode:
authorobiwankennedy <renaud@rolisteam.org>2014-01-08 18:18:15 +0100
committerobiwankennedy <renaud@rolisteam.org>2014-01-08 18:18:15 +0100
commitd52b42dff5a2944fa22f6da5241086ae0128b17a (patch)
tree40fad84e6aec7035c02e7d256a8ea97c076b7b30 /diceresult.h
parent72120576b04270ea7ddf207322d29fd81823d243 (diff)
downloadOneRoll-d52b42dff5a2944fa22f6da5241086ae0128b17a.tar.gz
OneRoll-d52b42dff5a2944fa22f6da5241086ae0128b17a.zip
Update diceresult.h
die*
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