1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
1999-12-13 21:59:26 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
2000-03-16 04:29:22 +00:00
|
|
|
* Copyright 1995-2000 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#ifndef LSTRING_H
|
|
|
|
#define LSTRING_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#ifndef USE_INCLUDED_STRING
|
|
|
|
#include <string>
|
|
|
|
using std::string;
|
1999-09-27 18:44:28 +00:00
|
|
|
#else
|
1999-10-02 16:21:10 +00:00
|
|
|
#include "support/lyxstring.h"
|
|
|
|
typedef lyxstring string;
|
1999-09-27 18:44:28 +00:00
|
|
|
#endif
|
|
|
|
#endif
|