Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Class template weeks_duration

boost::date_time::weeks_duration — Additional duration type that represents a number of n*7 days.

Synopsis

template<typename duration_config> 
class weeks_duration
  :  : public boost::date_time::date_duration< duration_config >
{
public:
  // construct/copy/destruct
  weeks_duration(typename duration_config::impl_type);
  weeks_duration(special_values);

  // public member functions
};

Description

weeks_duration construct/copy/destruct

  1. weeks_duration(typename duration_config::impl_type w);
  2. weeks_duration(special_values sv);

weeks_duration public member functions

    Copyright © 2001-2005 CrystalClear Software, Inc

    PrevUpHomeNext