...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::gregorian::greg_weekday — Represent a day within a week (range 0==Sun to 6==Sat)
// In header: <boost/date_time/gregorian/greg_weekday.hpp> class greg_weekday { public: // types typedef boost::date_time::weekdays weekday_enum; // construct/copy/destruct greg_weekday(unsigned short); // public member functions unsigned short as_number() const; const char * as_short_string() const; const char * as_long_string() const; const wchar_t * as_short_wstring() const; const wchar_t * as_long_wstring() const; weekday_enum as_enum() const; };