Changeset 1761 in Sophya for trunk/ArchTOIPipe/Kernel
- Timestamp:
- Nov 13, 2001, 5:14:44 PM (24 years ago)
- Location:
- trunk/ArchTOIPipe/Kernel
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ArchTOIPipe/Kernel/toi.cc
r1742 r1761 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: toi.cc,v 1. 9 2001-11-09 23:13:14aubourg Exp $5 // $Id: toi.cc,v 1.10 2001-11-13 16:14:43 aubourg Exp $ 6 6 7 7 #include "toiprocessor.h" … … 44 44 } 45 45 46 void TOI::PrintStatus( ostream & os) const46 void TOI::PrintStatus(std::ostream & os) const 47 47 { 48 48 os << "TOI::PrintStatus() - Name=" << getName() << endl; -
trunk/ArchTOIPipe/Kernel/toi.h
r1759 r1761 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: toi.h,v 1.1 2 2001-11-13 15:47:26aubourg Exp $7 // $Id: toi.h,v 1.13 2001-11-13 16:14:43 aubourg Exp $ 8 8 9 9 #ifndef TOI_H … … 35 35 36 36 // ----- Rajouts Reza 12/3/2001 37 virtual void PrintStatus( ostream & os) const;37 virtual void PrintStatus(std::ostream & os) const; 38 38 // Fin rajouts Reza 12/3/2001 ------ 39 39 … … 148 148 }; 149 149 150 inline ostream & operator << (ostream & os, TOI const & toi)150 inline std::ostream & operator << (std::ostream & os, TOI const & toi) 151 151 { toi.PrintStatus(os); return os; } 152 152 -
trunk/ArchTOIPipe/Kernel/toiprocessor.cc
r1750 r1761 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: toiprocessor.cc,v 1.1 7 2001-11-12 14:12:54aubourg Exp $5 // $Id: toiprocessor.cc,v 1.18 2001-11-13 16:14:43 aubourg Exp $ 6 6 7 7 #include "toiprocessor.h" … … 180 180 } 181 181 182 void TOIProcessor::PrintStatus( ostream & os)182 void TOIProcessor::PrintStatus(std::ostream & os) 183 183 { 184 184 chkinit(); -
trunk/ArchTOIPipe/Kernel/toiprocessor.h
r1759 r1761 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: toiprocessor.h,v 1.1 3 2001-11-13 15:47:26aubourg Exp $7 // $Id: toiprocessor.h,v 1.14 2001-11-13 16:14:43 aubourg Exp $ 8 8 9 9 … … 124 124 125 125 // Methodes rajoutees par Reza 11/3/2001 126 virtual void PrintStatus( ostream & os) ; // const plus tard126 virtual void PrintStatus(std::ostream & os) ; // const plus tard 127 127 // Fin rajout Reza 11/3/2001 128 128 … … 167 167 }; 168 168 169 inline ostream & operator << (ostream & os, TOIProcessor /*const*/ & toip)169 inline std::ostream & operator << (std::ostream & os, TOIProcessor /*const*/ & toip) 170 170 { toip.PrintStatus(os); return os; } 171 171 -
trunk/ArchTOIPipe/Kernel/toiseqbuff.cc
r1738 r1761 3 3 // Christophe Magneville 4 4 // Reza Ansari 5 // $Id: toiseqbuff.cc,v 1. 7 2001-11-08 15:47:46aubourg Exp $5 // $Id: toiseqbuff.cc,v 1.8 2001-11-13 16:14:43 aubourg Exp $ 6 6 7 7 #include "toiprocessor.h" … … 54 54 } 55 55 56 void TOISeqBuffered::PrintStatus( ostream & os) const56 void TOISeqBuffered::PrintStatus(std::ostream & os) const 57 57 { 58 58 os << "---TOISeqBuffered::PrintStatus() - Name=" << getName() -
trunk/ArchTOIPipe/Kernel/toiseqbuff.h
r1738 r1761 5 5 // Christophe Magneville 6 6 // Reza Ansari 7 // $Id: toiseqbuff.h,v 1. 7 2001-11-08 15:47:46aubourg Exp $7 // $Id: toiseqbuff.h,v 1.8 2001-11-13 16:14:44 aubourg Exp $ 8 8 9 9 #ifndef TOISEQBUFF_H … … 28 28 { AllocBuffer(wsz); } // apres le demarrage des threads 29 29 30 virtual void PrintStatus( ostream & os) const;30 virtual void PrintStatus(std::ostream & os) const; 31 31 32 32 inline void setDebugLevel(int lev=0) { dbglev=lev; }
Note:
See TracChangeset
for help on using the changeset viewer.