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.
5 // https://www.boost.org/LICENSE_1_0.txt
6 
7 #ifndef BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
8 #define BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
9 
10 #include <boost/locale/config.hpp>
11 #include <string>
12 
13 #ifdef BOOST_MSVC
14 # pragma warning(push)
15 # pragma warning(disable : 4275 4251 4231 4660)
16 #endif
17 
18 namespace boost {
19  namespace locale {
24 
29  namespace time_zone {
33  BOOST_LOCALE_DECL std::string global();
37  BOOST_LOCALE_DECL std::string global(std::string const &new_tz);
38  }
39 
41 
42  } // locale
43 } // boost
44 
45 #ifdef BOOST_MSVC
46 #pragma warning(pop)
47 #endif
48 
49 
50 #endif
51 
unspecified_type time_zone(char const *id)
Definition: formatting.hpp:634