X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmHeader.cxx;h=4419fb9131a13f7191ac94d2844a387b2c08a674;hb=912de5d1cc942f7386c83d32c5d847ef5bb2bf17;hp=90299a8a0ab45d4a08a4d685b8f7533b1390f508;hpb=e6671b4378ba33a2cdf7c711e4e45250af74dbbc;p=gdcm.git diff --git a/src/gdcmHeader.cxx b/src/gdcmHeader.cxx index 90299a8a..4419fb91 100644 --- a/src/gdcmHeader.cxx +++ b/src/gdcmHeader.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmHeader.cxx,v $ Language: C++ - Date: $Date: 2004/07/31 23:30:04 $ - Version: $Revision: 1.181 $ + Date: $Date: 2004/09/01 16:23:59 $ + Version: $Revision: 1.183 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -30,12 +30,9 @@ /** * \brief Constructor * @param filename name of the file whose header we want to analyze - * @param exception_on_error whether we want to throw an exception or not */ -gdcmHeader::gdcmHeader( std::string const & filename, - bool exception_on_error ): - gdcmDocument( filename, - exception_on_error ) +gdcmHeader::gdcmHeader( std::string const & filename ): + gdcmDocument( filename ) { // for some ACR-NEMA images GrPixel, NumPixel is *not* 7fe0,0010 // We may encounter the 'RETired' (0x0028, 0x0200) tag @@ -80,10 +77,9 @@ gdcmHeader::gdcmHeader( std::string const & filename, /** * \brief Constructor - * @param exception_on_error whether we want to throw an exception or not */ -gdcmHeader::gdcmHeader(bool exception_on_error) : - gdcmDocument( exception_on_error ) +gdcmHeader::gdcmHeader() + :gdcmDocument() { } @@ -757,7 +753,6 @@ int gdcmHeader::GetBitsStored() return 0; // It's supposed to be mandatory // the caller will have to check } - return atoi( strSize.c_str() ); } @@ -777,7 +772,6 @@ int gdcmHeader::GetBitsAllocated() return 0; // It's supposed to be mandatory // the caller will have to check } - return atoi( strSize.c_str() ); } @@ -797,7 +791,6 @@ int gdcmHeader::GetSamplesPerPixel() return 1; // Well, it's supposed to be mandatory ... // but sometimes it's missing : *we* assume Gray pixels } - return atoi( strSize.c_str() ); } @@ -814,7 +807,6 @@ int gdcmHeader::GetPlanarConfiguration() { return 0; } - return atoi( strSize.c_str() ); } @@ -848,7 +840,6 @@ int gdcmHeader::GetPixelSize() { return 8; } - dbg.Verbose(0, "gdcmHeader::GetPixelSize: Unknown pixel type"); return 0; } @@ -907,7 +898,6 @@ std::string gdcmHeader::GetPixelType() { sign = "S"; } - return bitsAlloc + sign; }