// -*- C++ -*- /* This file is part of * ====================================================== * * LyX, The Document Processor * * Copyright (C) 1995 Matthias Ettrich * Copyright (C) 1995-1999 The LyX Team. * *======================================================*/ #ifndef LSTRING_H #define LSTRING_H #ifndef USE_INCLUDED_STRING #include using std::string; //using std::wstring; #else #include "support/lyxstring.h" typedef lyxstring string; //typedef lyxwstring wstring; #endif #endif