Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:36

0001 #ifndef BOOST_DATE_TIME_TZ_DATABASE_HPP__
0002 #define BOOST_DATE_TIME_TZ_DATABASE_HPP__
0003 
0004 /* Copyright (c) 2003-2004 CrystalClear Software, Inc.
0005  * Subject to the Boost Software License, Version 1.0. 
0006  * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
0007  * Author: Jeff Garland, Bart Garst
0008  * $Date$
0009  */
0010 
0011 #include <string>
0012 #include "boost/date_time/local_time/custom_time_zone.hpp"
0013 #include "boost/date_time/local_time/dst_transition_day_rules.hpp"
0014 #include "boost/date_time/tz_db_base.hpp"
0015 
0016 
0017 namespace boost {
0018 namespace local_time {
0019 
0020   using date_time::data_not_accessible; 
0021   using date_time::bad_field_count; 
0022 
0023   //! Object populated with boost::shared_ptr<time_zone_base> objects
0024   /*! Object populated with boost::shared_ptr<time_zone_base> objects
0025    * Database is populated from specs stored in external csv file. See
0026    * date_time::tz_db_base for greater detail */
0027   typedef date_time::tz_db_base<custom_time_zone, nth_kday_dst_rule> tz_database;
0028 
0029 }} // namespace
0030 
0031 #endif // BOOST_DATE_TIME_TZ_DATABASE_HPP__
0032