mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 10:40:48 +00:00
02e9472374
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5347 a592a061-630c-0410-9148-cb99ea01b6c8
18 lines
269 B
C++
18 lines
269 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file LOstream.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*/
|
|
|
|
#ifndef LOSTREAM_H
|
|
#define LOSTREAM_H
|
|
|
|
#ifdef HAVE_OSTREAM
|
|
#include <ostream>
|
|
#else
|
|
#include <iostream>
|
|
#endif
|
|
|
|
#endif
|