mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-25 05:55:34 +00:00
25d9537fbd
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5341 a592a061-630c-0410-9148-cb99ea01b6c8
18 lines
269 B
C++
18 lines
269 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file LIStream.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*/
|
|
|
|
#ifndef LISTREAM_H
|
|
#define LISTREAM_H
|
|
|
|
#ifdef HAVE_ISTREAM
|
|
#include <istream>
|
|
#else
|
|
#include <iostream>
|
|
#endif
|
|
|
|
#endif
|