/*========================================================================= Program: gdcm Module: $RCSfile: gdcmDicomDirVisit.cxx,v $ Language: C++ Date: $Date: 2005/07/08 19:07:12 $ Version: $Revision: 1.1 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #include "gdcmDicomDirVisit.h" #include "gdcmValEntry.h" #include "gdcmGlobal.h" namespace gdcm { //----------------------------------------------------------------------------- // Constructor / Destructor /** * \brief Constructor * \note End user must use : DicomDirStudy::NewVisit() */ DicomDirVisit::DicomDirVisit(bool empty): DicomDirObject() { if ( !empty ) { ListDicomDirVisitElem const &elemList = Global::GetDicomDirElements()->GetDicomDirVisitElements(); FillObject(elemList); } } /** * \brief Canonical destructor. */ DicomDirVisit::~DicomDirVisit() { } //----------------------------------------------------------------------------- // Public //----------------------------------------------------------------------------- // Protected //----------------------------------------------------------------------------- // Private //----------------------------------------------------------------------------- // Print /** * \brief Prints the Object * @param os ostream to write to * @param indent Indentation string to be prepended during printing * @return */ void DicomDirVisit::Print(std::ostream &os, std::string const & ) { os << "VISIT : "; for(ListDocEntry::iterator i = DocEntries.begin(); i!= DocEntries.end(); ++i) { if ( (*i)->GetGroup() == 0x0004 && (*i)->GetElement() == 0x1500 ) { os << (dynamic_cast(*i))->GetValue(); //FIXME // ???? } } os << std::endl; DicomDirObject::Print(os); } //----------------------------------------------------------------------------- } // end namespace gdcm