]> git.lyx.org Git - lyx.git/blob - src/LString.h
handle 2.13 and 2.53
[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 #if 0
16 #ifndef _CONFIG_H
17 #error The <config.h> header should always be included before LString.h
18 #endif
19 #endif
20
21 #ifndef USE_INCLUDED_STRING
22 #include <string>
23 using std::string;
24 #else
25 #ifdef __STRING__
26 #error The <string> header has been included before LString.h
27 #else
28 #define __STRING__
29 #endif
30 #include "support/lyxstring.h"
31 // using lyx::string;
32 typedef lyxstring string;
33 #endif
34 #endif