12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
- #define BOOST_LOCALE_TIME_ZONE_HPP_INCLUDED
- #include <boost/locale/config.hpp>
- #include <string>
- #ifdef BOOST_MSVC
- # pragma warning(push)
- # pragma warning(disable : 4275 4251 4231 4660)
- #endif
- namespace boost { namespace locale {
-
-
-
-
-
- namespace time_zone {
-
- BOOST_LOCALE_DECL std::string global();
-
- BOOST_LOCALE_DECL std::string global(const std::string& new_tz);
- }
-
- }}
- #ifdef BOOST_MSVC
- # pragma warning(pop)
- #endif
- #endif
|