File indexing completed on 2025-01-30 09:44:58
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
0008 #define BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
0009
0010 #include <boost/locale/config.hpp>
0011 #include <string>
0012
0013 #ifdef BOOST_MSVC
0014 # pragma warning(push)
0015 # pragma warning(disable : 4275 4251 4231 4660)
0016 #endif
0017
0018 namespace boost { namespace locale {
0019
0020
0021
0022
0023
0024
0025 namespace time_zone {
0026
0027 BOOST_LOCALE_DECL std::string global();
0028
0029 BOOST_LOCALE_DECL std::string global(const std::string& new_tz);
0030 }
0031
0032
0033
0034 }}
0035
0036 #ifdef BOOST_MSVC
0037 # pragma warning(pop)
0038 #endif
0039
0040 #endif