Changeset 1762 in Sophya for trunk/ArchTOIPipe/Kernel


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

toujours et encore magique

Location:
trunk/ArchTOIPipe/Kernel
Files:
6 edited

Legend:

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

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

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

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

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

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

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