Boost.Locale
time_zone.hpp
1 //
2 // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See
5 // accompanying file LICENSE_1_0.txt or copy at
6 // http://www.boost.org/LICENSE_1_0.txt)
7 //
8 #ifndef BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
9 #define BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
10 
11 #include <boost/locale/config.hpp>
12 #ifdef BOOST_MSVC
13 # pragma warning(push)
14 # pragma warning(disable : 4275 4251 4231 4660)
15 #endif
16 
17 #include <string>
18 
19 
20 namespace boost {
21  namespace locale {
26 
31  namespace time_zone {
35  BOOST_LOCALE_DECL std::string global();
39  BOOST_LOCALE_DECL std::string global(std::string const &new_tz);
40  }
41 
43 
44  } // locale
45 } // boost
46 
47 #ifdef BOOST_MSVC
48 #pragma warning(pop)
49 #endif
50 
51 
52 #endif
53 
54 // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
unspecified_type time_zone(char const *id)
Definition: formatting.hpp:634