]> git.lyx.org Git - lyx.git/blob - src/LString.h
25809cba739ad9778241ed418e950b78c39b7638
[lyx.git] / src / LString.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  *
5  *           LyX, The Document Processor
6  *
7  *          Copyright 1995 Matthias Ettrich
8  *          Copyright 1995-2001 The LyX Team.
9  *
10  * ====================================================== */
11
12 #ifndef LSTRING_H
13 #define LSTRING_H
14
15 #ifndef _CONFIG_H
16 #error The <config.h> header should always be included before LString.h
17 #endif
18
19 #ifndef USE_INCLUDED_STRING
20 #include <string>
21 using std::string;
22 #else
23 #ifdef __STRING__
24 #error The <string> header has been included before LString.h
25 #else
26 #define __STRING__
27 #endif
28 #include "support/lyxstring.h"
29 // using lyx::string;
30 typedef lyxstring string;
31 #endif
32 #endif