lyx_mirror/src/LString.h
Allan Rae 20229daf94 complete revision of SGI STL compatability. Heaps better, see ChangeLog.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@379 a592a061-630c-0410-9148-cb99ea01b6c8
1999-12-15 01:15:08 +00:00

23 lines
478 B
C++

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