Boost.Locale
boost/locale/time_zone.hpp
00001 //
00002 //  Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
00003 //
00004 //  Distributed under the Boost Software License, Version 1.0. (See
00005 //  accompanying file LICENSE_1_0.txt or copy at
00006 //  http://www.boost.org/LICENSE_1_0.txt)
00007 //
00008 #ifndef BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
00009 #define BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
00010 
00011 #include <boost/locale/config.hpp>
00012 #ifdef BOOST_MSVC
00013 #  pragma warning(push)
00014 #  pragma warning(disable : 4275 4251 4231 4660)
00015 #endif
00016 
00017 #include <string>
00018 
00019 
00020 namespace boost {
00021     namespace locale {
00026 
00031         namespace time_zone {
00035             BOOST_LOCALE_DECL std::string global();
00039             BOOST_LOCALE_DECL std::string global(std::string const &new_tz);
00040         }
00041 
00043 
00044     } // locale
00045 } // boost
00046 
00047 #ifdef BOOST_MSVC
00048 #pragma warning(pop)
00049 #endif
00050 
00051 
00052 #endif
00053 
00054 // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4