Ciao a tutti, arrivo subito al dunque: Non funziona header time con g++.
#include <iostream>
#include <ctime>
using namespace std;
int main(){
Time wake_up(7, 0, 0);
wake_up.add_seconds(1000);
cout << wake_up.get_hours() <<":" << wake_up.get_minutes() <<":" << wake_up.get.seconds() <<"\n";
return 0;
}
Tutto ciò restituisce:
In function 'int main()':
error: 'Time' was not declared in this scope
error: expected ';' before 'wake_up'
error: 'wake_up' was not declared in this scope.
Sbaglio qualcosa ?
Grazie delle risposte !