• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_ICU_CDATA_HPP
9 #define BOOST_LOCALE_ICU_CDATA_HPP
10 
11 #include <unicode/locid.h>
12 #include <string>
13 
14 namespace boost {
15     namespace locale {
16         namespace impl_icu {
17             struct cdata {
18                 icu::Locale locale;
19                 std::string encoding;
20                 bool utf8;
21             };
22         }
23     }
24 }
25 
26 
27 #endif
28 // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
29