mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
6a1167adab
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5573 a592a061-630c-0410-9148-cb99ea01b6c8
40 lines
779 B
C++
40 lines
779 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef LSTRING_H
|
|
#define LSTRING_H
|
|
|
|
#if 0
|
|
#ifndef _CONFIG_H
|
|
#error The <config.h> header should always be included before LString.h
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef USE_INCLUDED_STRING
|
|
|
|
#include <string>
|
|
using std::string;
|
|
#define STRCONV(STR) STR
|
|
#else
|
|
|
|
#ifdef __STRING__
|
|
#error The <string> header has been included before LString.h
|
|
#else
|
|
#define __STRING__
|
|
#endif
|
|
#include "support/lyxstring.h"
|
|
// using lyx::string;
|
|
typedef lyxstring string;
|
|
#define STRCONV(STR) STR.c_str()
|
|
#endif
|
|
|
|
#endif
|