00001
00002
00003
00004
00005
00006
00007
00008 #ifndef BOOSTER_LOCALE_TIME_ZONE_H_INCLUDED
00009 #define BOOSTER_LOCALE_TIME_ZONE_H_INCLUDED
00010
00011 #include <booster/config.h>
00012 #ifdef BOOSTER_MSVC
00013 # pragma warning(push)
00014 # pragma warning(disable : 4275 4251 4231 4660)
00015 #endif
00016
00017 #include <string>
00018
00019
00020 namespace booster {
00021 namespace locale {
00026
00031 namespace time_zone {
00035 BOOSTER_API std::string global();
00039 BOOSTER_API std::string global(std::string const &new_tz);
00040 }
00041
00043
00044 }
00045 }
00046
00047 #ifdef BOOSTER_MSVC
00048 #pragma warning(pop)
00049 #endif
00050
00051
00052 #endif
00053
00054