git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24616 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-05-05 15:22:59 +00:00
parent adc9429855
commit f39515acac

View File

@ -19,7 +19,11 @@
namespace lyx { namespace lyx {
/// String type for storing the main text in UCS4 encoding /**
* String type for storing the main text in UCS4 encoding.
* Use std::string only in cases 7-bit ASCII is to be manipulated
* within the variable.
*/
typedef std::basic_string<char_type> docstring; typedef std::basic_string<char_type> docstring;
/// Creates a docstring from a C string of ASCII characters /// Creates a docstring from a C string of ASCII characters