Viewing file: gdcmMacros.h (2.06 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*=========================================================================
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
|