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 c_local_adjustor

boost::date_time::c_local_adjustor —

Adjust to / from utc using the C API.

Synopsis

template<typename time_type> 
class c_local_adjustor {
public:
  // types
  typedef time_type::time_duration_type time_duration_type;
  typedef time_type::date_type          date_type;         
  typedef date_type::duration_type      date_duration_type;

  // public static functions
  time_type utc_to_local(const time_type &) ;
};

Description

Warning!!! This class assumes that timezone settings of the machine are correct. This can be a very dangerous assumption.

c_local_adjustor public static functions

  1. time_type utc_to_local(const time_type & t) ;

    Convert a utc time to local time.

Copyright © 2001-2004 CrystalClear Software, Inc

PrevUpHomeNext