CrystalClear Software Home Library Home Documentation Index

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

template<typename CharT = char> 
class time_zone_names_base {
public:
  // types
  typedef std::basic_string< CharT > string_type;

  // construct/copy/destruct
  time_zone_names_base(const string_type &, const string_type &, 
                       const string_type &, const string_type &);

  // public member functions
  string_type dst_zone_abbrev() const;
  string_type std_zone_abbrev() const;
  string_type dst_zone_name() const;
  string_type std_zone_name() const;
};

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. CharT Allows class to support different character types

time_zone_names_base construct/copy/destruct

  1. time_zone_names_base(const string_type & std_zone_name, 
                         const string_type & std_zone_abbrev, 
                         const string_type & dst_zone_name, 
                         const string_type & dst_zone_abbrev);

time_zone_names_base public member functions

  1. string_type dst_zone_abbrev() const;
  2. string_type std_zone_abbrev() const;
  3. string_type dst_zone_name() const;
  4. string_type std_zone_name() const;
Copyright © 2001-2005 CrystalClear Software, Inc

PrevUpHomeNext