// Pilota.h #ifndef PILOTA_H #define PILOTA_H #include #include "Date.h" class Pilota { friend ostream& operator<< ( ostream&, const Pilota &); public: Pilota( string, string, int, int, int ); void setNome( string ); private: string firstName; string lastName; Date birthDate; }; #endif