Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class greg_weekday

boost::gregorian::greg_weekday — Represent a day within a week (range 0==Sun to 6==Sat)

Synopsis

// In header: <boost/date_time/gregorian/greg_weekday.hpp>


class greg_weekday : public  {
public:
  // types
  typedef  ;

  // construct/copy/destruct
  ();

  // public member functions
   () ;
   () ;
   () ;
   () ;
   () ;
   () ;
};

Description

greg_weekday public construct/copy/destruct

  1. ( day_of_week_num);

greg_weekday public member functions

  1.  () ;
  2.  () ;
  3.  () ;
    Return a 3 digit english string of the day of week (eg: Sun)
  4.  () ;
    Return a point to a long english string representing day of week.
  5.  () ;
    Return a 3 digit english wchar_t string of the day of week (eg: Sun)
  6.  () ;
    Return a point to a long english wchar_t string representing day of week.

PrevUpHomeNext