mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
94a6d7ed67
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@311 a592a061-630c-0410-9148-cb99ea01b6c8
26 lines
467 B
C++
26 lines
467 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 LOSTREAM_H
|
|
#define LOSTREAM_H
|
|
|
|
#ifdef HAVE_OSTREAM
|
|
#include <ostream>
|
|
#else
|
|
#include <iostream>
|
|
#endif
|
|
|
|
using std::ostream;
|
|
using std::endl;
|
|
|
|
#endif
|