MeVisLab Toolbox Reference
mlDcmDRTSetupDeviceSequenceInterface.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 __mlDcmDRTSetupDeviceSequenceInterface_H
24 #define __mlDcmDRTSetupDeviceSequenceInterface_H
25 
26 // Local includes
27 #include "mlDcmtkAccessories.h"
28 
29 // Dcmtk includes
30 //#include "mlDcmDRTSetupDeviceSequenceInterface.h" //DRTSetupDeviceSequence
31 
32 
33 // ML includes
34 #ifndef __mlModuleIncludes_H
35 #include "mlModuleIncludes.h"
36 #endif
37 
38 ML_START_NAMESPACE
39 
40 // ------------------------------------------------------------------
42 // ------------------------------------------------------------------
44 {
45  public:
46 
48  {
49  public:
50 
51  Item() { _dcmItem = DcmtkAccessories::createNewDicomTree(); }
52 
53  Item(DCMTree::TreePtr dcmItem) : _dcmItem(dcmItem) {}
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  // SetupDeviceDescription (300a,01ba) vr=ST, vm=1, type=3
67  bool getSetupDeviceDescription(std::string& parameter) const;
68  std::string getSetupDeviceDescriptionTag() const { return "(300a,01ba)"; }
69  bool setSetupDeviceDescription(std::string parameter);
70 
71  // SetupDeviceLabel (300a,01b8) vr=SH, vm=1, type=2C
72  bool getSetupDeviceLabel(std::string& parameter) const;
73  std::string getSetupDeviceLabelTag() const { return "(300a,01b8)"; }
74  bool setSetupDeviceLabel(std::string parameter);
75 
76  // SetupDeviceParameter (300a,01bc) vr=DS, vm=1, type=2C
77  bool getSetupDeviceParameter(std::string& parameter) const;
78  std::string getSetupDeviceParameterTag() const { return "(300a,01bc)"; }
79  bool setSetupDeviceParameter(std::string parameter);
80 
81  // SetupDeviceType (300a,01b6) vr=CS, vm=1, type=1C
82  bool getSetupDeviceType(std::string& parameter) const;
83  std::string getSetupDeviceTypeTag() const { return "(300a,01b6)"; }
84  bool setSetupDeviceType(std::string parameter);
85 
86  // SetupReferenceDescription (300a,01d0) vr=ST, vm=1, type=3
87  bool getSetupReferenceDescription(std::string& parameter) const;
88  std::string getSetupReferenceDescriptionTag() const { return "(300a,01d0)"; }
89  bool setSetupReferenceDescription(std::string parameter);
90 
91 
92  private:
93 
94  DCMTree::TreePtr _dcmItem;
95 
96  };
97 
99 
101  DcmDRTSetupDeviceSequenceInterface(std::vector<DcmDRTSetupDeviceSequenceInterface::Item> dcmSequence) : _itemVec(dcmSequence) {}
102 
104  for(size_t i=0; i < treePtrSeq.size(); i++)
105  {
106  _itemVec.push_back(DcmDRTSetupDeviceSequenceInterface::Item(treePtrSeq[i]));
107  }
108  }
109 
112  // SetupDeviceDescription (300a,01ba) vr=ST, vm=1, type=3
113  bool getSetupDeviceDescription(unsigned long idx, std::string& parameter) const;
114  bool getSetupDeviceDescription(DCMTree::TreePtr item, std::string& parameter) const;
115  std::string getSetupDeviceDescriptionTag() const { return "(300a,01ba)"; }
116  bool setSetupDeviceDescription(unsigned long idx, std::string parameter);
117 
118  // SetupDeviceLabel (300a,01b8) vr=SH, vm=1, type=2C
119  bool getSetupDeviceLabel(unsigned long idx, std::string& parameter) const;
120  bool getSetupDeviceLabel(DCMTree::TreePtr item, std::string& parameter) const;
121  std::string getSetupDeviceLabelTag() const { return "(300a,01b8)"; }
122  bool setSetupDeviceLabel(unsigned long idx, std::string parameter);
123 
124  // SetupDeviceParameter (300a,01bc) vr=DS, vm=1, type=2C
125  bool getSetupDeviceParameter(unsigned long idx, std::string& parameter) const;
126  bool getSetupDeviceParameter(DCMTree::TreePtr item, std::string& parameter) const;
127  std::string getSetupDeviceParameterTag() const { return "(300a,01bc)"; }
128  bool setSetupDeviceParameter(unsigned long idx, std::string parameter);
129 
130  // SetupDeviceType (300a,01b6) vr=CS, vm=1, type=1C
131  bool getSetupDeviceType(unsigned long idx, std::string& parameter) const;
132  bool getSetupDeviceType(DCMTree::TreePtr item, std::string& parameter) const;
133  std::string getSetupDeviceTypeTag() const { return "(300a,01b6)"; }
134  bool setSetupDeviceType(unsigned long idx, std::string parameter);
135 
136  // SetupReferenceDescription (300a,01d0) vr=ST, vm=1, type=3
137  bool getSetupReferenceDescription(unsigned long idx, std::string& parameter) const;
138  bool getSetupReferenceDescription(DCMTree::TreePtr item, std::string& parameter) const;
139  std::string getSetupReferenceDescriptionTag() const { return "(300a,01d0)"; }
140  bool setSetupReferenceDescription(unsigned long idx, std::string parameter);
141 
142 
145  void setSequence(std::vector<DcmDRTSetupDeviceSequenceInterface::Item> dcmSequence) {
146  _itemVec = dcmSequence;
147  }
148 
151  std::vector<DcmDRTSetupDeviceSequenceInterface::Item> getSequence() const {
152  return _itemVec;
153  }
154 
157  bool hasSequence() const {
158  return (_itemVec.size() != 0);
159  }
160 
164  return static_cast<MLint>(_itemVec.size());
165  }
166 
170  if (_itemVec.size() > idx) {
171  return _itemVec[idx];
172  }
174  }
175 
179  _itemVec.push_back(DcmDRTSetupDeviceSequenceInterface::Item());
180  return _itemVec[_itemVec.size()-1];
181  }
182 
184  _itemVec.push_back(newItem);
185  }
186 
189  bool insertItem(const size_t idx) {
190  if (_itemVec.size() > idx) {
191  std::vector<DcmDRTSetupDeviceSequenceInterface::Item>::iterator it = _itemVec.begin();
192  std::advance(it, idx);
193  _itemVec.insert(it, DcmDRTSetupDeviceSequenceInterface::Item());
194  return true;
195  }
196  return false;
197  }
198 
201  bool removeItem(const size_t idx) {
202  if ( _itemVec.size() > idx ) {
203  std::vector<DcmDRTSetupDeviceSequenceInterface::Item>::iterator it = _itemVec.begin();
204  std::advance(it, idx);
205  _itemVec.erase(it);
206  return true;
207  }
208  return false;
209  }
210 
211  protected:
213  std::vector<DcmDRTSetupDeviceSequenceInterface::Item> _itemVec;
214 };
215 
216 ML_END_NAMESPACE
217 
218 #endif // __mlDcmDRTSetupDeviceSequenceInterface_H
219 
220 /* MeVis-Hidden-Components-Start */
221 /* MeVis-Hidden-Components-End */
#define MLDCMTKACCESSORIES_EXPORT
bool setSetupDeviceParameter(std::string parameter)
bool setSetupDeviceDescription(std::string parameter)
bool setSetupDeviceType(std::string parameter)
bool getSetupDeviceLabel(std::string &parameter) const
bool setSetupDeviceLabel(std::string parameter)
bool getSetupDeviceType(std::string &parameter) const
bool getSetupDeviceDescription(std::string &parameter) const
bool getSetupDeviceParameter(std::string &parameter) const
bool getSetupReferenceDescription(std::string &parameter) const
bool setSetupReferenceDescription(std::string parameter)
Class to provide access to DRTSetupDeviceSequence.
bool setSetupDeviceType(unsigned long idx, std::string parameter)
bool getSetupDeviceParameter(unsigned long idx, std::string &parameter) const
bool hasSequence() const
Check if the DRTSetupDeviceSequence is set.
bool getSetupDeviceDescription(DCMTree::TreePtr item, std::string &parameter) const
void addItem(DcmDRTSetupDeviceSequenceInterface::Item newItem)
bool getSetupDeviceDescription(unsigned long idx, std::string &parameter) const
bool getSetupReferenceDescription(DCMTree::TreePtr item, std::string &parameter) const
bool getSetupDeviceType(DCMTree::TreePtr item, std::string &parameter) const
DcmDRTSetupDeviceSequenceInterface(std::vector< DcmDRTSetupDeviceSequenceInterface::Item > dcmSequence)
Default Constructor.
bool getSetupDeviceLabel(unsigned long idx, std::string &parameter) const
bool setSetupDeviceLabel(unsigned long idx, std::string parameter)
void setSequence(std::vector< DcmDRTSetupDeviceSequenceInterface::Item > dcmSequence)
Set the DRTSetupDeviceSequence this interface class provides access to.
DcmDRTSetupDeviceSequenceInterface(DCMTree::TreePtrVector treePtrSeq)
std::vector< DcmDRTSetupDeviceSequenceInterface::Item > getSequence() const
Return the DRTSetupDeviceSequence this interface class provides access to.
bool getSetupReferenceDescription(unsigned long idx, std::string &parameter) const
bool removeItem(const size_t idx)
Removes the indicated item from the sequence.
bool setSetupReferenceDescription(unsigned long idx, std::string parameter)
MLint getNumberOfItems() const
Return number of items the internal sequence consists of.
bool insertItem(const size_t idx)
Insert an item at the indicated position.
bool getSetupDeviceType(unsigned long idx, std::string &parameter) const
bool setSetupDeviceDescription(unsigned long idx, std::string parameter)
virtual ~DcmDRTSetupDeviceSequenceInterface()
Default virtual Destructor.
std::vector< DcmDRTSetupDeviceSequenceInterface::Item > _itemVec
Reference to the wrapped DICOM tree pointer vector.
bool setSetupDeviceParameter(unsigned long idx, std::string parameter)
DcmDRTSetupDeviceSequenceInterface::Item getItem(const size_t idx) const
Gets the item at the indicated position.
DcmDRTSetupDeviceSequenceInterface::Item & addItem()
Adds a new item to the sequence.
bool getSetupDeviceParameter(DCMTree::TreePtr item, std::string &parameter) const
bool getSetupDeviceLabel(DCMTree::TreePtr item, std::string &parameter) const
Class collecting some DICOM helper functionality explicitly for dcmtk.
MLint64 MLint
A signed ML integer type with at least 64 bits used for index calculations on very large images even ...
Definition: mlTypeDefs.h:578
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:70