1 #ifndef BOOST_DATE_TIME_TZ_DATABASE_HPP__
2 #define BOOST_DATE_TIME_TZ_DATABASE_HPP__
4 /* Copyright (c) 2003-2004 CrystalClear Software, Inc.
5 * Subject to the Boost Software License, Version 1.0.
6 * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
7 * Author: Jeff Garland, Bart Garst
12 #include "boost/date_time/local_time/custom_time_zone.hpp"
13 #include "boost/date_time/local_time/dst_transition_day_rules.hpp"
14 #include "boost/date_time/tz_db_base.hpp"
18 namespace local_time
{
20 using date_time::data_not_accessible
;
21 using date_time::bad_field_count
;
23 //! Object populated with boost::shared_ptr<time_zone_base> objects
24 /*! Object populated with boost::shared_ptr<time_zone_base> objects
25 * Database is populated from specs stored in external csv file. See
26 * date_time::tz_db_base for greater detail */
27 typedef date_time::tz_db_base
<custom_time_zone
, nth_kday_dst_rule
> tz_database
;
31 #endif // BOOST_DATE_TIME_TZ_DATABASE_HPP__