CppCMS
time_zone.h
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 BOOSTER_LOCALE_TIME_ZONE_H_INCLUDED
9 #define BOOSTER_LOCALE_TIME_ZONE_H_INCLUDED
10 
11 #include <booster/config.h>
12 #ifdef BOOSTER_MSVC
13 # pragma warning(push)
14 # pragma warning(disable : 4275 4251 4231 4660)
15 #endif
16 
17 #include <string>
18 
19 
20 namespace booster {
21  namespace locale {
26 
31  namespace time_zone {
35  BOOSTER_API std::string global();
39  BOOSTER_API std::string global(std::string const &new_tz);
40  }
41 
43 
44  } // locale
45 } // boost
46 
47 #ifdef BOOSTER_MSVC
48 #pragma warning(pop)
49 #endif
50 
51 
52 #endif
53 
54 // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
details::set_timezone time_zone(char const *id)
Definition: formatting.h:634
This is the main namespace that encloses all localization classes.
Definition: locale_fwd.h:14
BOOSTER_API std::string global()
Booster library namespace. The library that implements Boost Like API in ABI backward compatible way...
Definition: application.h:23