[go: up one dir, main page]

Menu

[r2]: / base / storico.h  Maximize  Restore  History

Download this file

20 lines (14 with data), 412 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#ifndef STORICO_H
#define STORICO_H
#include <QLinkedList>
#include "lotto.h"
#include "estrazione.h"
class Storico {
private:
QLinkedList<Estrazione> estrazioni;
public:
Storico(); // costruttore a 0 parametri
void InserisciEstrazione(Estrazione); // inserisce nello storico un estrazione
Estrazione getEstrazione(QDate) const; // restituisce una estrazione in base una data
};
#endif