]> git.lyx.org Git - lyx.git/blob - src/LString.h
Add support for compilers which do not have cname headers
[lyx.git] / src / LString.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *       
7  *          Copyright (C) 1995 Matthias Ettrich
8  *          Copyright (C) 1995-1999 The LyX Team.
9  *
10  *======================================================*/
11
12 #ifndef LSTRING_H
13 #define LSTRING_H 
14
15 #ifndef USE_INCLUDED_STRING
16 #include <string>
17 using std::string;
18 //using std::wstring;
19 #else
20 #include "support/lyxstring.h"
21 typedef lyxstring string;
22 //typedef lyxwstring wstring;
23 #endif
24 #endif