2000-09-14 17:53:12 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
2003-09-05 17:23:11 +00:00
|
|
|
|
* \file std_sstream.h
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Jean-Marc Lasgouttes
|
2002-03-21 17:27:08 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
2000-09-14 17:53:12 +00:00
|
|
|
|
|
2003-09-05 17:23:11 +00:00
|
|
|
|
#ifndef STD_SSTREAM_H
|
|
|
|
|
#define STD_SSTREAM_H
|
2000-09-14 17:53:12 +00:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SSTREAM
|
|
|
|
|
#include <sstream>
|
|
|
|
|
#else
|
|
|
|
|
#include "support/sstream.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-09-05 17:23:11 +00:00
|
|
|
|
#endif // NOT STD_SSTREAM_H
|