lyx_mirror/src/support/LOstream.h
Lars Gullik Bjønnes 94a6d7ed67 some white-space changes, enum changes because of ridance of definitions.h, block.h added small change in lyxstring.C
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@311 a592a061-630c-0410-9148-cb99ea01b6c8
1999-11-15 10:54:16 +00:00

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