blob: a68cefcab66425ee6984920ed94058565e5bef0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//
// Copyright (c) 2023 Alexander Grund
//
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#ifndef BOOST_LOCALE_SHARED_MESSAGE_HPP
#define BOOST_LOCALE_SHARED_MESSAGE_HPP
#include <boost/locale/generator.hpp>
#include <boost/locale/util/locale_data.hpp>
#include <locale>
#include <string>
#include <vector>
namespace boost { namespace locale { namespace detail {
std::locale install_message_facet(const std::locale& in,
char_facet_t type,
const util::locale_data& data,
const std::vector<std::string>& domains,
const std::vector<std::string>& paths);
}}} // namespace boost::locale::detail
#endif
|