mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
0eccdd1c36
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@162 a592a061-630c-0410-9148-cb99ea01b6c8
26 lines
537 B
C++
26 lines
537 B
C++
// -*- 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 <string>
|
|
using std::string;
|
|
//using std::wstring;
|
|
#else
|
|
#include "support/lyxstring.h"
|
|
typedef lyxstring string;
|
|
//typedef lyxwstring wstring;
|
|
#endif
|
|
#endif
|
|
|