
| Current Path : /usr/include/gdcm-3.0/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //usr/include/gdcm-3.0/gdcmIODs.h |
/*=========================================================================
Program: GDCM (Grassroots DICOM). A DICOM library
Copyright (c) 2006-2011 Mathieu Malaterre
All rights reserved.
See Copyright.txt or http://gdcm.sourceforge.net/Copyright.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 notice for more information.
=========================================================================*/
#ifndef GDCMIODS_H
#define GDCMIODS_H
#include "gdcmTypes.h"
#include "gdcmIOD.h"
#include <map>
namespace gdcm
{
/**
* \brief Class for representing a IODs
* \note bla
* \sa IOD
*/
class GDCM_EXPORT IODs
{
public:
typedef std::string IODName;
typedef std::map<IODName, IOD> IODMapType;
IODs() = default;
friend std::ostream& operator<<(std::ostream& _os, const IODs &_val);
void Clear() { IODsInternal.clear(); }
void AddIOD(const char *name , const IOD & module )
{
IODsInternal.insert(
IODMapType::value_type(name, module));
}
const IOD &GetIOD(const char *name) const
{
//return IODsInternal[name];
IODMapType::const_iterator it = IODsInternal.find( name );
assert( it != IODsInternal.end() );
assert( it->first == name );
return it->second;
}
typedef IODMapType::const_iterator IODMapTypeConstIterator;
IODMapTypeConstIterator Begin() const { return IODsInternal.begin(); }
IODMapTypeConstIterator End() const { return IODsInternal.end(); }
private:
IODMapType IODsInternal;
};
//-----------------------------------------------------------------------------
inline std::ostream& operator<<(std::ostream& _os, const IODs &_val)
{
IODs::IODMapType::const_iterator it = _val.IODsInternal.begin();
for(;it != _val.IODsInternal.end(); ++it)
{
const std::string &name = it->first;
const IOD &m = it->second;
_os << name << " " << m << '\n';
}
return _os;
}
} // end namespace gdcm
#endif //GDCMIODS_H