
| 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/gdcmMacros.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 GDCMMACROS_H
#define GDCMMACROS_H
#include "gdcmTypes.h"
#include "gdcmMacro.h"
#include <map>
namespace gdcm
{
/**
* \brief Class for representing a Modules
* \note bla
* \sa Module
*/
class GDCM_EXPORT Macros
{
public:
typedef std::map<std::string, Macro> ModuleMapType;
Macros() = default;
friend std::ostream& operator<<(std::ostream& _os, const Macros&_val);
void Clear() { ModulesInternal.clear(); }
// A Module is inserted based on it's ref
void AddMacro(const char *ref, const Macro & module )
{
assert( ref && *ref );
assert( ModulesInternal.find( ref ) == ModulesInternal.end() );
ModulesInternal.insert(
ModuleMapType::value_type(ref, module));
}
const Macro &GetMacro(const char *name) const
{
assert( name && *name );
ModuleMapType::const_iterator it = ModulesInternal.find( name );
assert( it != ModulesInternal.end() );
assert( it->first == name );
return it->second;
}
bool IsEmpty() const { return ModulesInternal.empty(); }
private:
ModuleMapType ModulesInternal;
};
//-----------------------------------------------------------------------------
inline std::ostream& operator<<(std::ostream& _os, const Macros &_val)
{
Macros::ModuleMapType::const_iterator it = _val.ModulesInternal.begin();
for(;it != _val.ModulesInternal.end(); ++it)
{
const std::string &name = it->first;
const Macro &m = it->second;
_os << name << " " << m << '\n';
}
return _os;
}
} // end namespace gdcm
#endif //GDCMMODULES_H