aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/diceresult.h
blob: 92122335f2a9859474779b9298dd082536e619a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef DICERESULT_H
#define DICERESULT_H
#include <QList>

class DiceResult
{
public:
    DiceResult();

    qint64 getSum();
    QList<qint64>& getResultList();
    void insertResult(qint64);

    void setResultList(QList<qint64> list);


private:
    QList<qint64> m_diceValues;
};

#endif // DICERESULT_H