x
Yes
No
Do you want to visit DriveHQ English website?
首页
产品服务
价格
免费试用
下载客户端
关于我们
云文件服务
|
云备份服务
|
FTP服务
|
企业邮箱服务
|
网站托管
|
客户端软件
云文件服务
云备份服务
FTP服务
企业级邮箱服务
网站托管
客户端软件
time_zone_base.hpp - Hosted on DriveHQ Cloud IT Platform
返回上层目录
上传
下载
共享
发布
新建文件夹
新建文件
复制
剪切
删除
粘贴
评论
升级服务
路径: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\boost_1_35_0\boost\date_time\time_zone_base.hpp
旋转
特效
属性
历史版本
#ifndef _DATE_TIME_TIME_ZONE_BASE__ #define _DATE_TIME_TIME_ZONE_BASE__ /* Copyright (c) 2003-2005 CrystalClear Software, Inc. * Subject to the Boost Software License, Version 1.0. * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) * Author: Jeff Garland, Bart Garst * $Date: 2008-02-27 15:00:24 -0500 (Wed, 27 Feb 2008) $ */ #include
#include
namespace boost { namespace date_time { //! Interface class for dynamic time zones. /*! This class represents the base interface for all timezone * representations. Subclasses may provide different systems * for identifying a particular zone. For example some may * provide a geographical based zone construction while others * may specify the offset from GMT. Another possible implementation * would be to convert from POSIX timezone strings. Regardless of * the construction technique, this is the interface that these * time zone types must provide. * * Note that this class is intended to be used as a shared * resource (hence the derivation from boost::counted_base. */ template
class time_zone_base { public: typedef CharT char_type; typedef std::basic_string
string_type; typedef std::basic_ostringstream
stringstream_type; typedef typename time_type::date_type::year_type year_type; typedef typename time_type::time_duration_type time_duration_type; time_zone_base() {}; virtual ~time_zone_base() {}; //!String for the timezone when in daylight savings (eg: EDT) virtual string_type dst_zone_abbrev() const=0; //!String for the zone when not in daylight savings (eg: EST) virtual string_type std_zone_abbrev() const=0; //!String for the timezone when in daylight savings (eg: Eastern Daylight Time) virtual string_type dst_zone_name() const=0; //!String for the zone when not in daylight savings (eg: Eastern Standard Time) virtual string_type std_zone_name() const=0; //! True if zone uses daylight savings adjustments otherwise false virtual bool has_dst() const=0; //! Local time that DST starts -- undefined if has_dst is false virtual time_type dst_local_start_time(year_type y) const=0; //! Local time that DST ends -- undefined if has_dst is false virtual time_type dst_local_end_time(year_type y) const=0; //! Base offset from UTC for zone (eg: -07:30:00) virtual time_duration_type base_utc_offset() const=0; //! Adjustment forward or back made while DST is in effect virtual time_duration_type dst_offset() const=0; //! Returns a POSIX time_zone string for this object virtual string_type to_posix_string() const =0; private: }; //! Structure which holds the time offsets associated with daylight savings time /*! *@param time_duration_type A type used to represent the offset */ template
class dst_adjustment_offsets { public: dst_adjustment_offsets(const time_duration_type& dst_adjust, const time_duration_type& dst_start_offset, const time_duration_type& dst_end_offset) : dst_adjust_(dst_adjust), dst_start_offset_(dst_start_offset), dst_end_offset_(dst_end_offset) {} //! Amount DST adjusts the clock eg: plus one hour time_duration_type dst_adjust_; //! Time past midnight on start transition day that dst starts time_duration_type dst_start_offset_; //! Time past midnight on end transition day that dst ends time_duration_type dst_end_offset_; }; } } //namespace date_time #endif
time_zone_base.hpp
网页地址
文件地址
上一页
56/60
下一页
下载
( 3 KB )
Comments
Total ratings:
0
Average rating:
无评论
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.