Chris@16: #ifndef BOOST_DATE_TIME_TZ_DATABASE_HPP__ Chris@16: #define BOOST_DATE_TIME_TZ_DATABASE_HPP__ Chris@16: Chris@16: /* Copyright (c) 2003-2004 CrystalClear Software, Inc. Chris@16: * Subject to the Boost Software License, Version 1.0. Chris@16: * (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) Chris@16: * Author: Jeff Garland, Bart Garst Chris@101: * $Date$ Chris@16: */ Chris@16: Chris@16: #include Chris@16: #include "boost/date_time/local_time/custom_time_zone.hpp" Chris@16: #include "boost/date_time/local_time/dst_transition_day_rules.hpp" Chris@16: #include "boost/date_time/tz_db_base.hpp" Chris@16: Chris@16: Chris@16: namespace boost { Chris@16: namespace local_time { Chris@16: Chris@16: using date_time::data_not_accessible; Chris@16: using date_time::bad_field_count; Chris@16: Chris@16: //! Object populated with boost::shared_ptr objects Chris@16: /*! Object populated with boost::shared_ptr objects Chris@16: * Database is populated from specs stored in external csv file. See Chris@16: * date_time::tz_db_base for greater detail */ Chris@16: typedef date_time::tz_db_base tz_database; Chris@16: Chris@16: }} // namespace Chris@16: Chris@16: #endif // BOOST_DATE_TIME_TZ_DATABASE_HPP__ Chris@16: