#ifndef ESTRAZIONE_H
#define ESTRAZIONE_H
#include <QVector>
#include <QDate>
#include "lotto.h"
#include "estrazioneruota.h"
class Estrazione {
private:
QVector<EstrazioneRuota> ruote;
QDate data;
public:
Estrazione(QDate); // costruttore a 1 parametro
bool operator<(Estrazione) const;
bool operator<=(Estrazione) const;
bool operator>(Estrazione) const;
bool operator>=(Estrazione) const;
bool operator==(Estrazione) const;
bool operator!=(Estrazione) const;
void setEstrazioneRuota(Lotto::Ruota, QVector<int>); // inserisce nell'estrazione i numueri di una ruota
EstrazioneRuota getEstrazioneRuota(Lotto::Ruota) const; // restituisce i numeri di una ruota
};
#endif