Changeset 1761 in Sophya for trunk/ArchTOIPipe/Kernel


Ignore:
Timestamp:
Nov 13, 2001, 5:14:44 PM (24 years ago)
Author:
aubourg
Message:

std::ostream car pour magique ostream is ambiguous

Location:
trunk/ArchTOIPipe/Kernel
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ArchTOIPipe/Kernel/toi.cc

    r1742 r1761  
    33//                               Christophe Magneville
    44//                               Reza Ansari
    5 // $Id: toi.cc,v 1.9 2001-11-09 23:13:14 aubourg Exp $
     5// $Id: toi.cc,v 1.10 2001-11-13 16:14:43 aubourg Exp $
    66
    77#include "toiprocessor.h"
     
    4444}
    4545
    46 void TOI::PrintStatus(ostream & os) const
     46void TOI::PrintStatus(std::ostream & os) const
    4747{
    4848  os << "TOI::PrintStatus() - Name=" << getName() << endl;
  • trunk/ArchTOIPipe/Kernel/toi.h

    r1759 r1761  
    55//                               Christophe Magneville
    66//                               Reza Ansari
    7 // $Id: toi.h,v 1.12 2001-11-13 15:47:26 aubourg Exp $
     7// $Id: toi.h,v 1.13 2001-11-13 16:14:43 aubourg Exp $
    88
    99#ifndef TOI_H
     
    3535
    3636  //   ----- Rajouts Reza 12/3/2001
    37   virtual void PrintStatus(ostream & os) const;
     37  virtual void PrintStatus(std::ostream & os) const;
    3838  //  Fin rajouts Reza 12/3/2001 ------
    3939
     
    148148};
    149149
    150 inline ostream & operator << (ostream & os, TOI const & toi)
     150inline std::ostream & operator << (std::ostream & os, TOI const & toi)
    151151{ toi.PrintStatus(os); return os; }
    152152
  • trunk/ArchTOIPipe/Kernel/toiprocessor.cc

    r1750 r1761  
    33//                               Christophe Magneville
    44//                               Reza Ansari
    5 // $Id: toiprocessor.cc,v 1.17 2001-11-12 14:12:54 aubourg Exp $
     5// $Id: toiprocessor.cc,v 1.18 2001-11-13 16:14:43 aubourg Exp $
    66
    77#include "toiprocessor.h"
     
    180180}
    181181
    182 void TOIProcessor::PrintStatus(ostream & os)
     182void TOIProcessor::PrintStatus(std::ostream & os)
    183183{
    184184  chkinit();
  • trunk/ArchTOIPipe/Kernel/toiprocessor.h

    r1759 r1761  
    55//                               Christophe Magneville
    66//                               Reza Ansari
    7 // $Id: toiprocessor.h,v 1.13 2001-11-13 15:47:26 aubourg Exp $
     7// $Id: toiprocessor.h,v 1.14 2001-11-13 16:14:43 aubourg Exp $
    88
    99
     
    124124
    125125  //  Methodes rajoutees par Reza 11/3/2001
    126   virtual void  PrintStatus(ostream & os) ; // const plus tard
     126  virtual void  PrintStatus(std::ostream & os) ; // const plus tard
    127127  //  Fin rajout Reza 11/3/2001
    128128
     
    167167};
    168168
    169 inline ostream & operator << (ostream & os, TOIProcessor /*const*/ & toip)
     169inline std::ostream & operator << (std::ostream & os, TOIProcessor /*const*/ & toip)
    170170{ toip.PrintStatus(os); return os; }
    171171
  • trunk/ArchTOIPipe/Kernel/toiseqbuff.cc

    r1738 r1761  
    33//                               Christophe Magneville
    44//                               Reza Ansari
    5 // $Id: toiseqbuff.cc,v 1.7 2001-11-08 15:47:46 aubourg Exp $
     5// $Id: toiseqbuff.cc,v 1.8 2001-11-13 16:14:43 aubourg Exp $
    66
    77#include "toiprocessor.h"
     
    5454}
    5555
    56 void TOISeqBuffered::PrintStatus(ostream & os) const
     56void TOISeqBuffered::PrintStatus(std::ostream & os) const
    5757{
    5858  os << "---TOISeqBuffered::PrintStatus() - Name=" << getName()
  • trunk/ArchTOIPipe/Kernel/toiseqbuff.h

    r1738 r1761  
    55//                               Christophe Magneville
    66//                               Reza Ansari
    7 // $Id: toiseqbuff.h,v 1.7 2001-11-08 15:47:46 aubourg Exp $
     7// $Id: toiseqbuff.h,v 1.8 2001-11-13 16:14:44 aubourg Exp $
    88
    99#ifndef TOISEQBUFF_H
     
    2828               { AllocBuffer(wsz); }   // apres le demarrage des threads
    2929
    30   virtual void PrintStatus(ostream & os) const;
     30  virtual void PrintStatus(std::ostream & os) const;
    3131
    3232  inline void setDebugLevel(int lev=0) { dbglev=lev; }
Note: See TracChangeset for help on using the changeset viewer.