lyx_mirror/src/support/LOstream.h

26 lines
465 B
C
Raw Normal View History

// -*- 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