| 1 | // |
|---|---|
| 2 | // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh) |
| 3 | // |
| 4 | // Distributed under the Boost Software License, Version 1.0. |
| 5 | // https://www.boost.org/LICENSE_1_0.txt |
| 6 | |
| 7 | #ifndef BOOST_LOCALE_ICONV_CODECVT_HPP |
| 8 | #define BOOST_LOCALE_ICONV_CODECVT_HPP |
| 9 | |
| 10 | #include <boost/locale/util.hpp> |
| 11 | #include <memory> |
| 12 | #include <string> |
| 13 | |
| 14 | namespace boost { namespace locale { |
| 15 | BOOST_LOCALE_DECL |
| 16 | std::unique_ptr<util::base_converter> create_iconv_converter(const std::string& encoding); |
| 17 | |
| 18 | }} // namespace boost::locale |
| 19 | |
| 20 | #endif |
| 21 |
