MeVisLab Toolbox Reference
mlDcmDRTReferencedControlPointSequenceInterface.h
Go to the documentation of this file.
1// Copyright (c) Fraunhofer MEVIS, Germany. All rights reserved.
2// **InsertLicense** code
3//----------------------------------------------------------------------------------
4//
5// NOTE:
6// This file has been generated automatically by
7// FMEwork/ReleaseMeVis/Configuration/CodeGenerators/dcmtkToMLConverter/convertDcmtkToML.py
8// using the template file
9// FMEwork/ReleaseMeVis/Configuration/CodeGenerators/dcmtkToMLConverter/MLDcmtkAccessoriesNew/templates/DcmSequenceInterface.h
10//
11// Destination project:
12// FMEwork/ReleaseMeVis/Sources/Shared/MLDcmtkAccessoriesNew/DcmSequenceInterfaces
13//
14//----------------------------------------------------------------------------------
16
21//----------------------------------------------------------------------------------
22
23#ifndef __mlDcmDRTReferencedControlPointSequenceInterface_H
24#define __mlDcmDRTReferencedControlPointSequenceInterface_H
25
26// Local includes
27#include "mlDcmtkAccessories.h"
28
29// Dcmtk includes
30//#include "mlDcmDRTReferencedControlPointSequenceInterface.h" //DRTReferencedControlPointSequence
31
32
33// ML includes
34#ifndef __mlModuleIncludes_H
35#include "mlModuleIncludes.h"
36#endif
37
39
40// ------------------------------------------------------------------
42// ------------------------------------------------------------------
44{
45 public:
46
48 {
49 public:
50
51 Item() { _dcmItem = DcmtkAccessories::createNewDicomTree(); }
52
54
55 Item(const Item &copyDcmItem) : _dcmItem(copyDcmItem.getTreePtr()) {}
56
57 Item &operator=(const Item &copyDcmItem){ _dcmItem = copyDcmItem.getTreePtr(); return *this; }
58
59 virtual ~Item() {}
60
61 DCMTree::TreePtr getTreePtr() const { return _dcmItem; }
62
63 bool isValid() const { return _dcmItem.get() != nullptr; }
64
65
66 // ReferencedStartControlPointIndex (300c,00f4) vr=IS, vm=1, type=1
67 bool getReferencedStartControlPointIndex(std::string& parameter) const;
68 std::string getReferencedStartControlPointIndexTag() const { return "(300c,00f4)"; }
69 bool setReferencedStartControlPointIndex(std::string parameter);
70
71 // ReferencedStopControlPointIndex (300c,00f6) vr=IS, vm=1, type=1
72 bool getReferencedStopControlPointIndex(std::string& parameter) const;
73 std::string getReferencedStopControlPointIndexTag() const { return "(300c,00f6)"; }
74 bool setReferencedStopControlPointIndex(std::string parameter);
75
76
77 private:
78
79 DCMTree::TreePtr _dcmItem;
80
81 };
82
84
86 DcmDRTReferencedControlPointSequenceInterface(std::vector<DcmDRTReferencedControlPointSequenceInterface::Item> dcmSequence) : _itemVec(dcmSequence) {}
87
94
97 // ReferencedStartControlPointIndex (300c,00f4) vr=IS, vm=1, type=1
98 bool getReferencedStartControlPointIndex(unsigned long idx, std::string& parameter) const;
99 bool getReferencedStartControlPointIndex(DCMTree::TreePtr item, std::string& parameter) const;
100 std::string getReferencedStartControlPointIndexTag() const { return "(300c,00f4)"; }
101 bool setReferencedStartControlPointIndex(unsigned long idx, std::string parameter);
102
103 // ReferencedStopControlPointIndex (300c,00f6) vr=IS, vm=1, type=1
104 bool getReferencedStopControlPointIndex(unsigned long idx, std::string& parameter) const;
105 bool getReferencedStopControlPointIndex(DCMTree::TreePtr item, std::string& parameter) const;
106 std::string getReferencedStopControlPointIndexTag() const { return "(300c,00f6)"; }
107 bool setReferencedStopControlPointIndex(unsigned long idx, std::string parameter);
108
109
112 void setSequence(std::vector<DcmDRTReferencedControlPointSequenceInterface::Item> dcmSequence) {
113 _itemVec = dcmSequence;
114 }
115
118 std::vector<DcmDRTReferencedControlPointSequenceInterface::Item> getSequence() const {
119 return _itemVec;
120 }
121
124 bool hasSequence() const {
125 return (_itemVec.size() != 0);
126 }
127
131 return static_cast<MLint>(_itemVec.size());
132 }
133
137 if (_itemVec.size() > idx) {
138 return _itemVec[idx];
139 }
141 }
142
147 return _itemVec[_itemVec.size()-1];
148 }
149
153
156 bool insertItem(const size_t idx) {
157 if (_itemVec.size() > idx) {
158 std::vector<DcmDRTReferencedControlPointSequenceInterface::Item>::iterator it = _itemVec.begin();
159 std::advance(it, idx);
161 return true;
162 }
163 return false;
164 }
165
168 bool removeItem(const size_t idx) {
169 if ( _itemVec.size() > idx ) {
170 std::vector<DcmDRTReferencedControlPointSequenceInterface::Item>::iterator it = _itemVec.begin();
171 std::advance(it, idx);
172 _itemVec.erase(it);
173 return true;
174 }
175 return false;
176 }
177
178 protected:
180 std::vector<DcmDRTReferencedControlPointSequenceInterface::Item> _itemVec;
181};
182
184
185#endif // __mlDcmDRTReferencedControlPointSequenceInterface_H
186
187/* MeVis-Hidden-Components-Start */
188/* MeVis-Hidden-Components-End */
#define MLDCMTKACCESSORIES_EXPORT
bool setReferencedStopControlPointIndex(std::string parameter)
bool setReferencedStartControlPointIndex(std::string parameter)
bool getReferencedStartControlPointIndex(std::string &parameter) const
bool getReferencedStopControlPointIndex(std::string &parameter) const
Class to provide access to DRTReferencedControlPointSequence.
DcmDRTReferencedControlPointSequenceInterface::Item getItem(const size_t idx) const
Gets the item at the indicated position.
MLint getNumberOfItems() const
Return number of items the internal sequence consists of.
bool removeItem(const size_t idx)
Removes the indicated item from the sequence.
DcmDRTReferencedControlPointSequenceInterface::Item & addItem()
Adds a new item to the sequence.
void addItem(DcmDRTReferencedControlPointSequenceInterface::Item newItem)
bool setReferencedStartControlPointIndex(unsigned long idx, std::string parameter)
bool setReferencedStopControlPointIndex(unsigned long idx, std::string parameter)
DcmDRTReferencedControlPointSequenceInterface(std::vector< DcmDRTReferencedControlPointSequenceInterface::Item > dcmSequence)
Default Constructor.
bool getReferencedStopControlPointIndex(unsigned long idx, std::string &parameter) const
bool getReferencedStartControlPointIndex(DCMTree::TreePtr item, std::string &parameter) const
std::vector< DcmDRTReferencedControlPointSequenceInterface::Item > _itemVec
Reference to the wrapped DICOM tree pointer vector.
bool getReferencedStopControlPointIndex(DCMTree::TreePtr item, std::string &parameter) const
bool hasSequence() const
Check if the DRTReferencedControlPointSequence is set.
std::vector< DcmDRTReferencedControlPointSequenceInterface::Item > getSequence() const
Return the DRTReferencedControlPointSequence this interface class provides access to.
void setSequence(std::vector< DcmDRTReferencedControlPointSequenceInterface::Item > dcmSequence)
Set the DRTReferencedControlPointSequence this interface class provides access to.
bool getReferencedStartControlPointIndex(unsigned long idx, std::string &parameter) const
bool insertItem(const size_t idx)
Insert an item at the indicated position.
Class collecting some DICOM helper functionality explicitly for dcmtk.
Target mlrange_cast(Source arg)
Generic version of checked ML casts.
MLint64 MLint
A signed ML integer type with at least 64 bits used for index calculations on very large images even ...
Definition mlTypeDefs.h:490
std::vector< TreePtr > TreePtrVector
a vector of TreePtr - used for sequences
Definition DCMTree_Lib.h:85
boost::shared_ptr< Tree > TreePtr
shared pointer to a DCMTree::Tree
Definition DCMTree_Lib.h:72