From 29d99c3881a2f97c5e08a79ea107cc2bf525dc4f Mon Sep 17 00:00:00 2001 From: jpr Date: Thu, 27 Jan 2005 13:55:24 +0000 Subject: [PATCH] Add some more info in News --- Doc/Website/News.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/Doc/Website/News.html b/Doc/Website/News.html index 084ba4c6..ccecbff3 100644 --- a/Doc/Website/News.html +++ b/Doc/Website/News.html @@ -31,6 +31,30 @@
  • A huge number of memory leaks removed
  • Improvement of write process +
    +
    +For people who get this new release :
    +
    +We consider now that :
    +- any dicom related file is a gdcm::Document.
    +- a gdcm::Document can be :
    +      - a gdcm::File,     if it contains pixel data,
    +      - a gdcm::DicomDir, if it contains only informations 
    +                          on the files in a given directory
    +- in a gdcm::Document, there are gdcm::DocEntry, that can be :
    +     - gdcm::ValEntry (whose value is std::string representable 
    +                       i.e. character values, or integers),
    +     - gdcm::BinEntry (whose value is not std::string representable 
    +                       i.e. color palettes, overlays, icons , ...)
    +     - gdcm::Sequence (no proper 'value', but a set of gdcm::SQItems, 
    +                       composed of a set of gdc::DocEntry, recursively)
    +- in a gdcm::DicomDir, we only deal, hierachically, with :
    +     - gdcmPatient
    +     - gdcmStudy
    +     - gdcmSerie
    +     - gdcmImage
    +
    + -- 2.48.1