]> git.lyx.org Git - lyx.git/blob - src/support/docstring.h
Merge the unicode branch into trunk.
[lyx.git] / src / support / docstring.h
1 // -*- C++ -*-
2 /**
3  * \file docstring.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * Provide a set of typedefs for commonly used things like sizes and
8  * indices wile trying to stay compatible with types used
9  * by the standard containers.
10  *
11  * \author André Pönitz
12  *
13  * Full author contact details are available in file CREDITS.
14  */
15
16 #ifndef LYX_DOCSTRING_H
17 #define LYX_DOCSTRING_H
18
19 #include <boost/cstdint.hpp>
20 #include <string>
21
22 namespace lyx {
23
24 typedef std::basic_string<boost::uint32_t> docstring;
25
26 }
27
28 #endif