Program: gdcm
Module: $RCSfile: gdcmFile.cxx,v $
Language: C++
- Date: $Date: 2005/02/04 13:15:41 $
- Version: $Revision: 1.210 $
+ Date: $Date: 2005/02/05 01:31:36 $
+ Version: $Revision: 1.211 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
}
else
{
-#ifdef GDCM_DEBUG
- std::cout << "Big trouble : Pixel Element ("
- << std::hex << GrPixel<<","<< NumPixel<< ") NOT found"
- << std::endl;
-#endif //GDCM_DEBUG
+ gdcmDebugMacro( "Big trouble : Pixel Element ("
+ << std::hex << GrPixel<<","<< NumPixel<< ") NOT found" );
return 0;
}
}
}
else
{
-#ifdef GDCM_DEBUG
- std::cout << "Big trouble : Pixel Element ("
- << std::hex << GrPixel<<","<< NumPixel<< ") NOT found"
- << std::endl;
-#endif //GDCM_DEBUG
+ gdcmDebugMacro( "Big trouble : Pixel Element ("
+ << std::hex << GrPixel<<","<< NumPixel<< ") NOT found" );
return 0;
}
}
Program: gdcm
Module: $RCSfile: gdcmJpeg2000.cxx,v $
Language: C++
- Date: $Date: 2005/02/01 10:29:55 $
- Version: $Revision: 1.17 $
+ Date: $Date: 2005/02/05 01:31:36 $
+ Version: $Revision: 1.18 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
-//-----------------------------------------------------------------------------
#include "gdcmFileHelper.h"
+#include "gdcmDebug.h"
#include <iostream>
#include <fstream>
* @warning : not yet made
*/
-bool gdcm_read_JPEG2000_file (std::ifstream* fp,void* image_buffer) {
- (void)fp; //FIXME
- (void)image_buffer; //FIXME
- std::cout << "Sorry JPEG 2000 File not yet taken into account" << std::endl;
+bool gdcm_read_JPEG2000_file (std::ifstream* , void* )
+{
+ gdcmVerboseMacro( "Sorry JPEG 2000 File not yet taken into account" );
return false;
}
Program: gdcm
Module: $RCSfile: gdcmJpegLS.cxx,v $
Language: C++
- Date: $Date: 2005/01/24 16:03:58 $
- Version: $Revision: 1.1 $
+ Date: $Date: 2005/02/05 01:31:36 $
+ Version: $Revision: 1.2 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
-//-----------------------------------------------------------------------------
#include "gdcmFileHelper.h"
+#include "gdcmDebug.h"
#include <iostream>
#include <fstream>
* @warning : not yet made
*/
-bool gdcm_read_JPEGLS_file (std::ifstream* fp,void* image_buffer) {
- (void)fp; //FIXME
- (void)image_buffer; //FIXME
- std::cout << "Sorry JPEG-LS File not yet taken into account" << std::endl;
+bool gdcm_read_JPEGLS_file (std::ifstream* , void* )
+{
+ gdcmVerboseMacro( "Sorry JPEG-LS File not yet taken into account" );
return false;
}
} // end namespace gdcm