Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template time_zone_names_base

boost::date_time::time_zone_names_base — Base type that holds various string names for timezone output.

Synopsis

// In header: <boost/date_time/time_zone_names.hpp>

template<typename CharT> 
class time_zone_names_base {
public:
  // types
  typedef CharT > ;

  // construct/copy/destruct
  ();
  (const , const , 
                       const , const );

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

Description

Class that holds various types of strings used for timezones. For example, for the western United States there is the full name: Pacific Standard Time and the abbreviated name: PST. During daylight savings there are additional names: Pacific Daylight Time and PDT.

Template Parameters

  1. typename CharT

    Allows class to support different character types

time_zone_names_base public construct/copy/destruct

  1. ();
  2. (const  std_zone_name_str, 
                         const  std_zone_abbrev_str, 
                         const  dst_zone_name_str, 
                         const  dst_zone_abbrev_str);

time_zone_names_base public member functions

  1.  () ;
  2.  () ;
  3.  () ;
  4.  () ;

PrevUpHomeNext