FEI Version of the Day
Loading...
Searching...
No Matches
fei_iosfwd.hpp
1/*--------------------------------------------------------------------*/
2/* Copyright 2006 Sandia Corporation. */
3/* Under the terms of Contract DE-AC04-94AL85000, there is a */
4/* non-exclusive license for use of this work by or on behalf */
5/* of the U.S. Government. Export of this program may require */
6/* a license from the United States Government. */
7/*--------------------------------------------------------------------*/
8
9#ifndef _fei_iosfwd_hpp_
10#define _fei_iosfwd_hpp_
11
12#include <fei_fwd.hpp>
13
14#undef FEI_OSTREAM
15
16#ifdef FEI_HAVE_IOSFWD
17#include <iosfwd>
18#define FEI_OSTREAM std::ostream
19#elif defined FEI_HAVE_IOSTREAM
20#include <iostream>
21#define FEI_OSTREAM std::ostream
22#else
23#include <iostream.h>
24#define FEI_OSTREAM ostream
25#endif
26
27#endif
28