[go: up one dir, main page]

Menu

[r1]: / base / estrazioneruota.h  Maximize  Restore  History

Download this file

21 lines (15 with data), 550 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#ifndef ESTRAZIONERUOTA_H
#define ESTRAZIONERUOTA_H
#include <QVector>
#include "lotto.h"
class EstrazioneRuota {
private:
QVector<int> numeri;
public:
EstrazioneRuota(); // costruttore a 0 parametri
EstrazioneRuota(int, int, int, int, int); // costruttore a 5 parametri
EstrazioneRuota(QVector<int>); // costruttore a 1 parametro
QVector<int> getEstrazioneRuota() const; // ritorna i 5 numeri dell'estrazione in una ruota
int getEstrattoRuota(int) const; // ritorna l'estratto i-esimo in una ruota
};
#endif