Changeset 181148 in git for factory/cf_map.h


Ignore:
Timestamp:
May 15, 2006, 11:03:07 AM (18 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f0daaa2ae00a1c211020bcbe4eca9c6fe7947a71
Parents:
1dc6163f5dbd22ee9839decb93a02494ac071aca
Message:
*hannes: ISTREAM, OSTREAM, CERR


git-svn-id: file:///usr/local/Singular/svn/trunk@9135 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_map.h

    r1dc616 r181148  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: cf_map.h,v 1.13 2006-05-15 08:17:50 Singular Exp $ */
     2/* $Id: cf_map.h,v 1.14 2006-05-15 09:03:04 Singular Exp $ */
    33
    44#ifndef INCL_CF_MAP_H
     
    1616#ifdef HAVE_IOSTREAM
    1717#include <iostream>
     18#define OSTREAM std::ostream
    1819#elif defined(HAVE_IOSTREAM_H)
    1920#include <iostream.h>
     21#define OSTREAM ostream
    2022#endif
    2123#endif /* NOSTREAMIO */
     
    6062    CanonicalForm subst () const { return S; }
    6163#ifndef NOSTREAMIO
    62     void print( ostream&) const;
    63     friend ostream & operator << ( ostream & s, const MapPair & p );
     64    void print( OSTREAM&) const;
     65    friend OSTREAM & operator << ( OSTREAM & s, const MapPair & p );
    6466#endif /* NOSTREAMIO */
    6567};
     
    99101  CanonicalForm operator () ( const CanonicalForm & f ) const;
    100102#ifndef NOSTREAMIO
    101   friend ostream & operator << ( ostream & s, const CFMap & m );
     103  friend OSTREAM & operator << ( OSTREAM & s, const CFMap & m );
    102104#endif /* NOSTREAMIO */
    103105};
Note: See TracChangeset for help on using the changeset viewer.