#ifndef BOOST_TEXT_HPP_INCLUDED
#define BOOST_TEXT_HPP_INCLUDED

//
//  text.hpp
//
//  Copyright Anders Dalvander 2011.
//
//  Distributed under the Boost Software License, Version 1.0. (See
//  accompanying file LICENSE_1_0.txt or copy at
//  http://www.boost.org/LICENSE_1_0.txt)
//

#include <boost/text/basic_text.hpp>
#include <boost/text/utf8_encoding.hpp>
#include <boost/text/utf16_encoding.hpp>
#include <boost/text/utf32_encoding.hpp>

namespace boost
{
   typedef basic_text<utf8::encoding> u8text;
   typedef basic_text<utf16::encoding> u16text;
   typedef basic_text<utf32::encoding> u32text;
}

#endif  // #ifndef BOOST_TEXT_HPP_INCLUDED
