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 BOOST_LOCALE_SRC_UTIL_GREGORIAN_HPP
9 #define BOOST_LOCALE_SRC_UTIL_GREGORIAN_HPP
10 
11 #include <locale>
12 
13 namespace boost {
14 namespace locale {
15 namespace util {
16 
17     std::locale install_gregorian_calendar(std::locale const &in,std::string const &terr);
18 
19 } // util
20 } // locale
21 } //boost
22 
23 
24 #endif
25 // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
26