1999-10-22 09:45:25 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
1999-10-22 09:45:25 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2000-03-09 03:36:48 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team.
|
1999-10-22 09:45:25 +00:00
|
|
|
*
|
1999-11-15 10:54:16 +00:00
|
|
|
* ====================================================== */
|
1999-10-22 09:45:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef LOSTREAM_H
|
2002-03-21 17:09:55 +00:00
|
|
|
#define LOSTREAM_H
|
1999-10-22 09:45:25 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_OSTREAM
|
|
|
|
#include <ostream>
|
2002-03-21 17:09:55 +00:00
|
|
|
#else
|
1999-10-22 09:45:25 +00:00
|
|
|
#include <iostream>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|