]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/locale/src/posix/codecvt.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / locale / src / posix / codecvt.hpp
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_IMPL_POSIX_CODECVT_HPP
9 #define BOOST_LOCALE_IMPL_POSIX_CODECVT_HPP
10 #include <boost/locale/config.hpp>
11 #include <boost/locale/util.hpp>
12
13 #include <memory>
14 #include <string>
15
16 namespace boost {
17 namespace locale {
18 namespace impl_posix {
19 BOOST_LOCALE_DECL
20 std::auto_ptr<util::base_converter> create_iconv_converter(std::string const &encoding);
21
22 } // impl_posix
23 } // locale
24 } // boost
25
26 #endif
27 // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
28