]> Creatis software - gdcm.git/commitdiff
ostream replaced by std::ostream
authorjpr <jpr>
Wed, 24 Sep 2003 14:29:23 +0000 (14:29 +0000)
committerjpr <jpr>
Wed, 24 Sep 2003 14:29:23 +0000 (14:29 +0000)
src/gdcmElValSet.cxx
src/gdcmException.cxx

index 73a4930e6d500aeb957055d5328c2ab977f55a0a..2dd8e846292b80e448505b274fb0331ef8103ce1 100644 (file)
@@ -59,7 +59,7 @@ int gdcmElValSet::CheckIfExistByNumber(guint16 Group, guint16 Elem ) {
  * \ingroup gdcmElValSet
  * \brief   
  */
-void gdcmElValSet::Print(ostream & os) {
+void gdcmElValSet::Print(std::ostream & os) {
 
    size_t o;
    short int g, e;
@@ -102,7 +102,7 @@ void gdcmElValSet::Print(ostream & os) {
  * \ingroup gdcmElValSet
  * \brief   
  */
-void gdcmElValSet::PrintByName(ostream & os) {
+void gdcmElValSet::PrintByName(std::ostream & os) {
    for (TagElValueNameHT::iterator tag = NameHt.begin();
           tag != NameHt.end();
           ++tag){
index d3120b94130f1d8556aa722ac68bccf131812b7d..ef908db918687a1534b1d7e44591afa8c3092890 100644 (file)
@@ -89,7 +89,7 @@ std::ostream& operator<<(std::ostream &os, const gdcmException &e) {
     os << "Exception " << e.getName() << " thrown: " << e.getError() << std::endl;
   }
   catch(...) {
-    gdcmException::fatal("operator<<(ostream &, const gdcmException&)");
+    gdcmException::fatal("operator<<(std::ostream &, const gdcmException&)");
   }
   return os;
 }