mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
77e706c441
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@638 a592a061-630c-0410-9148-cb99ea01b6c8
24 lines
500 B
C++
24 lines
500 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2000 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef LSTRING_H
|
|
#define LSTRING_H
|
|
|
|
#ifndef USE_INCLUDED_STRING
|
|
#include <string>
|
|
using std::string;
|
|
#else
|
|
#include "support/lyxstring.h"
|
|
// using lyx::string;
|
|
typedef lyxstring string;
|
|
#endif
|
|
#endif
|