/usr/include/gdcm-2.4/gdcmCSAHeaderDict.h is in libgdcm2-dev 2.4.4-3+deb8u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | /*=========================================================================
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 GDCMCSAHEADERDICT_H
#define GDCMCSAHEADERDICT_H
#include "gdcmTypes.h"
#include "gdcmTag.h"
#include "gdcmCSAHeaderDictEntry.h"
#include <iostream>
#include <iomanip>
#include <set>
#include <exception>
namespace gdcm
{
class GDCM_EXPORT CSAHeaderDictException : public std::exception {};
/**
* \brief Class to represent a map of CSAHeaderDictEntry
*/
class GDCM_EXPORT CSAHeaderDict
{
public:
typedef std::set<CSAHeaderDictEntry> MapCSAHeaderDictEntry;
typedef MapCSAHeaderDictEntry::iterator Iterator;
typedef MapCSAHeaderDictEntry::const_iterator ConstIterator;
//static CSAHeaderDictEntry GroupLengthCSAHeaderDictEntry; // = CSAHeaderDictEntry("Group Length",VR::UL,VM::VM1);
CSAHeaderDict():CSAHeaderDictInternal() {
assert( CSAHeaderDictInternal.empty() );
}
friend std::ostream& operator<<(std::ostream& _os, const CSAHeaderDict &_val);
ConstIterator Begin() const { return CSAHeaderDictInternal.begin(); }
ConstIterator End() const { return CSAHeaderDictInternal.end(); }
bool IsEmpty() const { return CSAHeaderDictInternal.empty(); }
void AddCSAHeaderDictEntry(const CSAHeaderDictEntry &de)
{
#ifndef NDEBUG
MapCSAHeaderDictEntry::size_type s = CSAHeaderDictInternal.size();
#endif
CSAHeaderDictInternal.insert( de );
assert( s < CSAHeaderDictInternal.size() );
}
const CSAHeaderDictEntry &GetCSAHeaderDictEntry(const char *name) const
{
MapCSAHeaderDictEntry::const_iterator it = CSAHeaderDictInternal.find( name );
if( it != CSAHeaderDictInternal.end() )
{
return *it;
}
throw CSAHeaderDictException();
}
protected:
friend class Dicts;
void LoadDefault();
private:
CSAHeaderDict &operator=(const CSAHeaderDict &_val); // purposely not implemented
CSAHeaderDict(const CSAHeaderDict &_val); // purposely not implemented
MapCSAHeaderDictEntry CSAHeaderDictInternal;
};
//-----------------------------------------------------------------------------
inline std::ostream& operator<<(std::ostream& os, const CSAHeaderDict &val)
{
CSAHeaderDict::MapCSAHeaderDictEntry::const_iterator it = val.CSAHeaderDictInternal.begin();
for(;it != val.CSAHeaderDictInternal.end(); ++it)
{
const CSAHeaderDictEntry &de = *it;
os << de << '\n';
}
return os;
}
} // end namespace gdcm
#endif //GDCMCSAHEADERDICT_H
|