1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#ifndef MY_HEADER_H_INCLUDED #define MY_HEADER_H_INCLUDED #include <iostream> #include <fstream> #include <stdlib.h> //system() using namespace std; //DEFINIZIONI STRUTTURE DATI struct tData { int g; int m; int a; }; struct tSpesa { char descrizione[30]; float importo; tData data; bool cancellato = false; }; //DEFINIZIONI VARIABILI E COSTANTI GLOBALI const string NOME_ARCHIVIO = "spese.dat"; #endif // MY_HEADER_H_INCLUDED |