📄 gdcmdicomdirvisit.cxx
字号:
/*=========================================================================
Program: gdcm
Module: $RCSfile: gdcmDicomDirVisit.cxx,v $
Language: C++
Date: $Date: 2006-02-18 12:36:38 $
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
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 )
{
if( dynamic_cast<ValEntry *>(*i) )
os << (dynamic_cast<ValEntry *>(*i))->GetValue();
}
}
os << std::endl;
DicomDirObject::Print(os);
}
//-----------------------------------------------------------------------------
} // end namespace gdcm
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -