annotate DEPENDENCIES/generic/include/boost/date_time/local_time/tz_database.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 #ifndef BOOST_DATE_TIME_TZ_DATABASE_HPP__
Chris@16 2 #define BOOST_DATE_TIME_TZ_DATABASE_HPP__
Chris@16 3
Chris@16 4 /* Copyright (c) 2003-2004 CrystalClear Software, Inc.
Chris@16 5 * Subject to the Boost Software License, Version 1.0.
Chris@16 6 * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
Chris@16 7 * Author: Jeff Garland, Bart Garst
Chris@101 8 * $Date$
Chris@16 9 */
Chris@16 10
Chris@16 11 #include <string>
Chris@16 12 #include "boost/date_time/local_time/custom_time_zone.hpp"
Chris@16 13 #include "boost/date_time/local_time/dst_transition_day_rules.hpp"
Chris@16 14 #include "boost/date_time/tz_db_base.hpp"
Chris@16 15
Chris@16 16
Chris@16 17 namespace boost {
Chris@16 18 namespace local_time {
Chris@16 19
Chris@16 20 using date_time::data_not_accessible;
Chris@16 21 using date_time::bad_field_count;
Chris@16 22
Chris@16 23 //! Object populated with boost::shared_ptr<time_zone_base> objects
Chris@16 24 /*! Object populated with boost::shared_ptr<time_zone_base> objects
Chris@16 25 * Database is populated from specs stored in external csv file. See
Chris@16 26 * date_time::tz_db_base for greater detail */
Chris@16 27 typedef date_time::tz_db_base<custom_time_zone, nth_kday_dst_rule> tz_database;
Chris@16 28
Chris@16 29 }} // namespace
Chris@16 30
Chris@16 31 #endif // BOOST_DATE_TIME_TZ_DATABASE_HPP__
Chris@16 32