Download this file
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