~ubuntu-branches/ubuntu/wily/bombono-dvd/wily

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/filesystem/detail/utf8_codecvt_facet.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20101104114625-8xfdhvhpsm51i0nu
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
 
2
// Andrew Lumsdaine, Indiana University (lums@osl.iu.edu).
 
3
 
 
4
// Distributed under the Boost Software License, Version 1.0.
 
5
// (See http://www.boost.org/LICENSE_1_0.txt)
 
6
 
 
7
#ifndef BOOST_FILESYSTEM_UTF8_CODECVT_FACET_HPP
 
8
#define BOOST_FILESYSTEM_UTF8_CODECVT_FACET_HPP
 
9
 
 
10
#include <boost/filesystem/config.hpp>
 
11
 
 
12
#define BOOST_UTF8_BEGIN_NAMESPACE \
 
13
     namespace boost { namespace filesystem { namespace detail {
 
14
 
 
15
#define BOOST_UTF8_END_NAMESPACE }}}
 
16
#define BOOST_UTF8_DECL BOOST_FILESYSTEM_DECL
 
17
 
 
18
#include <boost/detail/utf8_codecvt_facet.hpp>
 
19
 
 
20
#undef BOOST_UTF8_BEGIN_NAMESPACE
 
21
#undef BOOST_UTF8_END_NAMESPACE
 
22
#undef BOOST_UTF8_DECL
 
23
 
 
24
#endif