2000-09-14 17:53:12 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2000-09-14 17:53:12 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2000-09-14 17:53:12 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
2000-09-14 17:53:12 +00:00
|
|
|
*
|
|
|
|
* ====================================================== */
|
|
|
|
|
|
|
|
#ifndef LSSTREAM_H
|
2002-03-21 17:27:08 +00:00
|
|
|
#define LSSTREAM_H
|
2000-09-14 17:53:12 +00:00
|
|
|
|
2001-05-03 13:22:15 +00:00
|
|
|
// Since we will include a string header anyway, we'd better do it
|
|
|
|
// right now so that <string> is not loaded before lyxstring.h. (JMarc)
|
|
|
|
#include "LString.h"
|
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
#ifdef HAVE_SSTREAM
|
|
|
|
#include <sstream>
|
|
|
|
#else
|
|
|
|
#include "support/sstream.h"
|
|
|
|
#endif
|
|
|
|
|
2000-09-15 12:08:06 +00:00
|
|
|
using std::istringstream;
|
|
|
|
using std::ostringstream;
|
2001-07-13 14:03:48 +00:00
|
|
|
using std::stringstream;
|
2000-09-15 12:08:06 +00:00
|
|
|
|
2000-09-14 17:53:12 +00:00
|
|
|
#endif
|