GDCM 3.0.24
gdcmModuleEntry.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: GDCM (Grassroots DICOM). A DICOM library
4
5 Copyright (c) 2006-2011 Mathieu Malaterre
6 All rights reserved.
7 See Copyright.txt or http://gdcm.sourceforge.net/Copyright.html for details.
8
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the above copyright notice for more information.
12
13=========================================================================*/
14#ifndef GDCMMODULEENTRY_H
15#define GDCMMODULEENTRY_H
16
17#include "gdcmTypes.h"
18#include "gdcmType.h"
19
20#include <string>
21
22namespace gdcm
23{
30{
31public:
32 ModuleEntry(const char *name = "", const char *type = "3", const char *description = ""):Name(name)/*,Type(type)*/,DescriptionField(description) {
33 DataElementType = Type::GetTypeType(type);
34 }
35 virtual ~ModuleEntry() = default; // important
36 friend std::ostream& operator<<(std::ostream& _os, const ModuleEntry &_val);
37
38 void SetName(const char *name) { Name = name; }
39 const char *GetName() const { return Name.c_str(); }
40
41 void SetType(const Type &type) { DataElementType = type; }
42 const Type &GetType() const { return DataElementType; }
43
44 /*
45 * WARNING: 'Description' is currently a std::string, but it might change in the future
46 * do not expect it to remain the same, and always use the ModuleEntry::Description typedef
47 * instead.
48 */
49 typedef std::string Description;
50 void SetDescription(const char *d) { DescriptionField = d; }
51 const Description & GetDescription() const { return DescriptionField; }
52
53protected:
54 // PS 3.3 repeats the name of an attribute, but often contains typos
55 // for now we will not use this info, but instead access the DataDict instead
56 std::string Name;
57
58 // An attribute, encoded as a Data Element, may or may not be required in a
59 // Data Set, depending on that Attribute's Data Element Type.
61
62 // TODO: for now contains the raw description (with enumerated values, defined terms...)
64};
65//-----------------------------------------------------------------------------
66inline std::ostream& operator<<(std::ostream& _os, const ModuleEntry &_val)
67{
68 _os << _val.Name << "\t" << _val.DataElementType << "\t" << _val.DescriptionField;
69 return _os;
70}
71
73
74
75} // end namespace gdcm
76
77#endif //GDCMMODULEENTRY_H
Class for representing a ModuleEntry.
Definition gdcmModuleEntry.h:30
void SetName(const char *name)
Definition gdcmModuleEntry.h:38
std::string Name
Definition gdcmModuleEntry.h:56
void SetDescription(const char *d)
Definition gdcmModuleEntry.h:50
Type DataElementType
Definition gdcmModuleEntry.h:60
virtual ~ModuleEntry()=default
Description DescriptionField
Definition gdcmModuleEntry.h:63
const Type & GetType() const
Definition gdcmModuleEntry.h:42
std::string Description
Definition gdcmModuleEntry.h:49
void SetType(const Type &type)
Definition gdcmModuleEntry.h:41
const Description & GetDescription() const
Definition gdcmModuleEntry.h:51
const char * GetName() const
Definition gdcmModuleEntry.h:39
ModuleEntry(const char *name="", const char *type="3", const char *description="")
Definition gdcmModuleEntry.h:32
Type.
Definition gdcmType.h:42
#define GDCM_EXPORT
Definition gdcmWin32.h:34
Definition gdcmASN1.h:21
ModuleEntry MacroEntry
Definition gdcmModuleEntry.h:72
std::ostream & operator<<(std::ostream &os, const Directory &d)
Definition gdcmDirectory.h:88