MeVisLab Toolbox Reference
mlDcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface.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 __mlDcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface_H
24 #define __mlDcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface_H
25 
26 // Local includes
27 #include "mlDcmtkAccessories.h"
28 
29 // Dcmtk includes
30 //#include "mlDcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface.h" //DRTReferencedRTPlanSequenceInRTGeneralPlanModule
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  // RTPlanRelationship (300a,0055) vr=CS, vm=1, type=1C
67  bool getRTPlanRelationship(std::string& parameter) const;
68  std::string getRTPlanRelationshipTag() const { return "(300a,0055)"; }
69  bool setRTPlanRelationship(std::string parameter);
70 
71  // ReferencedSOPClassUID (0008,1150) vr=UI, vm=1, type=1C
72  bool getReferencedSOPClassUID(std::string& parameter) const;
73  std::string getReferencedSOPClassUIDTag() const { return "(0008,1150)"; }
74  bool setReferencedSOPClassUID(std::string parameter);
75 
76  // ReferencedSOPInstanceUID (0008,1155) vr=UI, vm=1, type=1C
77  bool getReferencedSOPInstanceUID(std::string& parameter) const;
78  std::string getReferencedSOPInstanceUIDTag() const { return "(0008,1155)"; }
79  bool setReferencedSOPInstanceUID(std::string parameter);
80 
81 
82  private:
83 
84  DCMTree::TreePtr _dcmItem;
85 
86  };
87 
89 
91  DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface(std::vector<DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item> dcmSequence) : _itemVec(dcmSequence) {}
92 
94  for(size_t i=0; i < treePtrSeq.size(); i++)
95  {
97  }
98  }
99 
102  // RTPlanRelationship (300a,0055) vr=CS, vm=1, type=1C
103  bool getRTPlanRelationship(unsigned long idx, std::string& parameter) const;
104  bool getRTPlanRelationship(DCMTree::TreePtr item, std::string& parameter) const;
105  std::string getRTPlanRelationshipTag() const { return "(300a,0055)"; }
106  bool setRTPlanRelationship(unsigned long idx, std::string parameter);
107 
108  // ReferencedSOPClassUID (0008,1150) vr=UI, vm=1, type=1C
109  bool getReferencedSOPClassUID(unsigned long idx, std::string& parameter) const;
110  bool getReferencedSOPClassUID(DCMTree::TreePtr item, std::string& parameter) const;
111  std::string getReferencedSOPClassUIDTag() const { return "(0008,1150)"; }
112  bool setReferencedSOPClassUID(unsigned long idx, std::string parameter);
113 
114  // ReferencedSOPInstanceUID (0008,1155) vr=UI, vm=1, type=1C
115  bool getReferencedSOPInstanceUID(unsigned long idx, std::string& parameter) const;
116  bool getReferencedSOPInstanceUID(DCMTree::TreePtr item, std::string& parameter) const;
117  std::string getReferencedSOPInstanceUIDTag() const { return "(0008,1155)"; }
118  bool setReferencedSOPInstanceUID(unsigned long idx, std::string parameter);
119 
120 
123  void setSequence(std::vector<DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item> dcmSequence) {
124  _itemVec = dcmSequence;
125  }
126 
129  std::vector<DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item> getSequence() const {
130  return _itemVec;
131  }
132 
135  bool hasSequence() const {
136  return (_itemVec.size() != 0);
137  }
138 
142  return static_cast<MLint>(_itemVec.size());
143  }
144 
148  if (_itemVec.size() > idx) {
149  return _itemVec[idx];
150  }
152  }
153 
158  return _itemVec[_itemVec.size()-1];
159  }
160 
162  _itemVec.push_back(newItem);
163  }
164 
167  bool insertItem(const size_t idx) {
168  if (_itemVec.size() > idx) {
169  std::vector<DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item>::iterator it = _itemVec.begin();
170  std::advance(it, idx);
172  return true;
173  }
174  return false;
175  }
176 
179  bool removeItem(const size_t idx) {
180  if ( _itemVec.size() > idx ) {
181  std::vector<DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item>::iterator it = _itemVec.begin();
182  std::advance(it, idx);
183  _itemVec.erase(it);
184  return true;
185  }
186  return false;
187  }
188 
189  protected:
191  std::vector<DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item> _itemVec;
192 };
193 
194 ML_END_NAMESPACE
195 
196 #endif // __mlDcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface_H
197 
198 /* MeVis-Hidden-Components-Start */
199 /* MeVis-Hidden-Components-End */
#define MLDCMTKACCESSORIES_EXPORT
Class to provide access to DRTReferencedRTPlanSequenceInRTGeneralPlanModule.
std::vector< DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item > _itemVec
Reference to the wrapped DICOM tree pointer vector.
std::vector< DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item > getSequence() const
Return the DRTReferencedRTPlanSequenceInRTGeneralPlanModule this interface class provides access to.
DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item getItem(const size_t idx) const
Gets the item at the indicated position.
bool getReferencedSOPInstanceUID(unsigned long idx, std::string &parameter) const
bool getReferencedSOPClassUID(DCMTree::TreePtr item, std::string &parameter) const
bool setRTPlanRelationship(unsigned long idx, std::string parameter)
bool hasSequence() const
Check if the DRTReferencedRTPlanSequenceInRTGeneralPlanModule is set.
bool getReferencedSOPInstanceUID(DCMTree::TreePtr item, std::string &parameter) const
bool getRTPlanRelationship(DCMTree::TreePtr item, std::string &parameter) const
void addItem(DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item newItem)
bool setReferencedSOPInstanceUID(unsigned long idx, std::string parameter)
DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item & addItem()
Adds a new item to the sequence.
void setSequence(std::vector< DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item > dcmSequence)
Set the DRTReferencedRTPlanSequenceInRTGeneralPlanModule this interface class provides access to.
DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface(std::vector< DcmDRTReferencedRTPlanSequenceInRTGeneralPlanModuleInterface::Item > dcmSequence)
Default Constructor.
bool getReferencedSOPClassUID(unsigned long idx, std::string &parameter) const
bool getRTPlanRelationship(unsigned long idx, std::string &parameter) const
bool setReferencedSOPClassUID(unsigned long idx, std::string parameter)
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