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

class DiceResult
{
public:
    DiceResult();

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


private:
    QList<qint64> m_diceValues;
};

#endif // DICERESULT_H