Program: gdcm
Module: $RCSfile: gdcmDicomDir.h,v $
Language: C++
- Date: $Date: 2006/02/16 20:06:13 $
- Version: $Revision: 1.74 $
+ Date: $Date: 2006/05/11 19:49:38 $
+ Version: $Revision: 1.75 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
/// \brief Constructs a DicomDir with a RefCounter
static DicomDir *New() {return new DicomDir();}
- GDCM_LEGACY( bool Load(std::string const &filename) );
+ GDCM_LEGACY( bool Load(std::string const &filename) )
bool Load( );
void Print(std::ostream &os = std::cout, std::string const &indent = "" );
protected:
DicomDir();
- GDCM_LEGACY( DicomDir(std::string const &filename, bool parseDir = false) );
+ GDCM_LEGACY( DicomDir(std::string const &filename, bool parseDir = false) )
~DicomDir();
void CreateDicomDirChainedList(std::string const &path);
Program: gdcm
Module: $RCSfile: gdcmFile.h,v $
Language: C++
- Date: $Date: 2006/03/29 16:13:00 $
- Version: $Revision: 1.125 $
+ Date: $Date: 2006/05/11 19:49:38 $
+ Version: $Revision: 1.126 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
static File *New() {return new File();}
// Loading
- GDCM_LEGACY(bool Load( std::string const &filename ));
+ GDCM_LEGACY(bool Load( std::string const &filename ))
bool Load();
// Standard values and informations contained in the header
bool IsReadable();
Program: gdcm
Module: $RCSfile: gdcmFileHelper.h,v $
Language: C++
- Date: $Date: 2006/05/02 11:14:05 $
- Version: $Revision: 1.43 $
+ Date: $Date: 2006/05/11 19:49:38 $
+ Version: $Revision: 1.44 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
uint8_t *GetImageData();
uint8_t *GetImageDataRaw();
- GDCM_LEGACY(size_t GetImageDataIntoVector(void *destination,size_t maxSize));
+ GDCM_LEGACY(size_t GetImageDataIntoVector(void *destination,size_t maxSize))
void SetImageData(uint8_t *data, size_t expectedSize);
Program: gdcm
Module: $RCSfile: gdcmMacro.h,v $
Language: C++
- Date: $Date: 2006/04/11 16:03:26 $
- Version: $Revision: 1.4 $
+ Date: $Date: 2006/05/11 19:49:38 $
+ Version: $Revision: 1.5 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
//
// Define GDCM_LEGACY macro to mark legacy methods where they are
// declared in their class.
-//
-// WARNING : Don't try to use it with 'inline' methods !
+//
+// WARNING : Don't try to use it with 'inline' methods !
//
//Example usage:
//
# define GDCM_LEGACY(method)
#elif defined(GDCM_LEGACY_SILENT) || defined(SWIG)
// Provide legacy methods with no warnings.
-# define GDCM_LEGACY(method) method
+# define GDCM_LEGACY(method) method;
#else
// Setup compile-time warnings for uses of deprecated methods if
// possible on this compiler.
#if defined(__APPLE__) && (__GNUC__ == 3) && (__GNUC_MINOR__ == 3)
// Seems like there is a bug in APPLE gcc for deprecated attribute and ctor
// This is fixed in g++ 4.0 (Tiger)
-# define GDCM_LEGACY(method) method
+# define GDCM_LEGACY(method) method;
#else
-# define GDCM_LEGACY(method) method __attribute__((deprecated))
+# define GDCM_LEGACY(method) method __attribute__((deprecated));
#endif
# elif defined(_MSC_VER) && _MSC_VER >= 1300
-# define GDCM_LEGACY(method) __declspec(deprecated) method
+# define GDCM_LEGACY(method) __declspec(deprecated) method;
# else
-# define GDCM_LEGACY(method) method
+# define GDCM_LEGACY(method) method;
# endif
#endif
Program: gdcm
Module: $RCSfile: gdcmSerieHelper.h,v $
Language: C++
- Date: $Date: 2006/03/30 16:51:29 $
- Version: $Revision: 1.38 $
+ Date: $Date: 2006/05/11 19:49:38 $
+ Version: $Revision: 1.39 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
const FileList &GetFileList()
{ return *SingleSerieUIDFileSetHT.begin()->second; }
- GDCM_LEGACY( FileList *GetFirstCoherentFileList() );
- GDCM_LEGACY( FileList *GetNextCoherentFileList() );
- GDCM_LEGACY( FileList *GetCoherentFileList(std::string serieUID) );
+ GDCM_LEGACY( FileList *GetFirstCoherentFileList() )
+ GDCM_LEGACY( FileList *GetNextCoherentFileList() )
+ GDCM_LEGACY( FileList *GetCoherentFileList(std::string serieUID) )
FileList *GetFirstSingleSerieUIDFileSet();
FileList *GetNextSingleSerieUIDFileSet();