1999-10-22 09:45:25 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-25 10:03:41 +00:00
|
|
|
/**
|
2003-09-05 17:23:11 +00:00
|
|
|
* \file std_ostream.h
|
2002-09-25 10:03:41 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*/
|
1999-10-22 09:45:25 +00:00
|
|
|
|
2003-09-05 17:23:11 +00:00
|
|
|
#ifndef STD_OSTREAM_H
|
|
|
|
#define STD_OSTREAM_H
|
1999-10-22 09:45:25 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_OSTREAM
|
|
|
|
#include <ostream>
|
2002-03-21 17:09:55 +00:00
|
|
|
#else
|
1999-10-22 09:45:25 +00:00
|
|
|
#include <iostream>
|
|
|
|
#endif
|
|
|
|
|
2003-09-05 17:23:11 +00:00
|
|
|
#endif // NOT STD_OSTREAM_H
|