#ifndef DATE_H #define DATE_H #include namespace X3DTK { struct Date { public: Date(); explicit Date(const SFString &date); SFString toSFString() const; int day; int month; int year; }; std::ostream& operator<<(std::ostream& o, const Date &date); } #endif