lyx_mirror/src/support/LIstream.h
Jean-Marc Lasgouttes 6fa667dbf2 Rename files in lyx.spec.in; do not include <config.h> in headers
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@295 a592a061-630c-0410-9148-cb99ea01b6c8
1999-11-08 13:47:49 +00:00

25 lines
447 B
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright (C) 1995 Matthias Ettrich
* Copyright (C) 1995-1999 The LyX Team.
*
*======================================================*/
#ifndef LISTREAM_H
#define LISTREAM_H
#ifdef HAVE_ISTREAM
#include <istream>
#else
#include <iostream>
#endif
using std::istream;
#endif