From: jpr Date: Fri, 27 Jan 2006 10:03:23 +0000 (+0000) Subject: Add #include for BCC. X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=777f844f553813ca9b3a3cc959422b704e9bd71f;p=gdcm.git Add #include for BCC. Thx to Luca Picello for providing fix. --- diff --git a/Example/Volume2Dicom.cxx b/Example/Volume2Dicom.cxx index e8b97936..1f271ee1 100644 --- a/Example/Volume2Dicom.cxx +++ b/Example/Volume2Dicom.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: Volume2Dicom.cxx,v $ Language: C++ - Date: $Date: 2005/10/25 14:52:27 $ - Version: $Revision: 1.10 $ + Date: $Date: 2006/01/27 10:03:23 $ + Version: $Revision: 1.11 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -18,7 +18,7 @@ /** * This example was proposed by Jean-Michel Rouet - * It was patch by Mathieu Malaterre to remove ITK reference and be more + * It was patched by Mathieu Malaterre to remove ITK reference and be more * independant from other toolkit * It's aim is to show people how to write their data volume into DICOM slices */ @@ -37,6 +37,10 @@ #define stat _stat #endif +#if defined(__BORLANDC__) + #include // for memset, memcpy +#endif + //const unsigned int Dimension = 3; void gdcmwrite(const char *inputfile, std::string directory); diff --git a/Example/WriteDicomAsJPEG.cxx b/Example/WriteDicomAsJPEG.cxx index 3b3acd57..97611a2a 100644 --- a/Example/WriteDicomAsJPEG.cxx +++ b/Example/WriteDicomAsJPEG.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: WriteDicomAsJPEG.cxx,v $ Language: C++ - Date: $Date: 2005/11/22 20:31:37 $ - Version: $Revision: 1.9 $ + Date: $Date: 2006/01/27 10:03:23 $ + Version: $Revision: 1.10 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -31,6 +31,10 @@ extern "C" { #include "gdcmjpeg/8/jerror.h" } +#if defined(__BORLANDC__) + #include // for memcpy +#endif + #include "gdcmJPEGFragment.h" #include #include