23#ifndef __mlDcmDRTEncryptedAttributesSequenceInterface_H
24#define __mlDcmDRTEncryptedAttributesSequenceInterface_H
34#ifndef __mlModuleIncludes_H
51 Item() { _dcmItem = DcmtkAccessories::createNewDicomTree(); }
63 bool isValid()
const {
return _dcmItem.get() !=
nullptr; }
118 std::vector<DcmDRTEncryptedAttributesSequenceInterface::Item>
getSequence()
const {
125 return (_itemVec.size() != 0);
131 return static_cast<MLint>(_itemVec.size());
137 if (_itemVec.size() >
idx) {
138 return _itemVec[
idx];
147 return _itemVec[_itemVec.size()-1];
157 if (_itemVec.size() >
idx) {
158 std::vector<DcmDRTEncryptedAttributesSequenceInterface::Item>::iterator
it = _itemVec.begin();
159 std::advance(
it,
idx);
169 if ( _itemVec.size() >
idx ) {
170 std::vector<DcmDRTEncryptedAttributesSequenceInterface::Item>::iterator
it = _itemVec.begin();
171 std::advance(
it,
idx);
180 std::vector<DcmDRTEncryptedAttributesSequenceInterface::Item>
_itemVec;
#define MLDCMTKACCESSORIES_EXPORT
DCMTree::TreePtr getTreePtr() const
Item & operator=(const Item ©DcmItem)
bool setEncryptedContentTransferSyntaxUID(std::string parameter)
std::string getEncryptedContentTag() const
bool setEncryptedContent(int parameter)
std::string getEncryptedContentTransferSyntaxUIDTag() const
Item(const Item ©DcmItem)
bool getEncryptedContentTransferSyntaxUID(std::string ¶meter) const
bool getEncryptedContent(int ¶meter) const
Item(DCMTree::TreePtr dcmItem)
Class to provide access to DRTEncryptedAttributesSequence.
DcmDRTEncryptedAttributesSequenceInterface()
bool getEncryptedContentTransferSyntaxUID(DCMTree::TreePtr item, std::string ¶meter) const
std::vector< DcmDRTEncryptedAttributesSequenceInterface::Item > _itemVec
Reference to the wrapped DICOM tree pointer vector.
DcmDRTEncryptedAttributesSequenceInterface::Item & addItem()
Adds a new item to the sequence.
std::vector< DcmDRTEncryptedAttributesSequenceInterface::Item > getSequence() const
Return the DRTEncryptedAttributesSequence this interface class provides access to.
virtual ~DcmDRTEncryptedAttributesSequenceInterface()
Default virtual Destructor.
MLint getNumberOfItems() const
Return number of items the internal sequence consists of.
DcmDRTEncryptedAttributesSequenceInterface(std::vector< DcmDRTEncryptedAttributesSequenceInterface::Item > dcmSequence)
Default Constructor.
DcmDRTEncryptedAttributesSequenceInterface(DCMTree::TreePtrVector treePtrSeq)
bool getEncryptedContentTransferSyntaxUID(unsigned long idx, std::string ¶meter) const
bool getEncryptedContent(DCMTree::TreePtr item, int ¶meter) const
bool removeItem(const size_t idx)
Removes the indicated item from the sequence.
bool getEncryptedContent(unsigned long idx, int ¶meter) const
bool hasSequence() const
Check if the DRTEncryptedAttributesSequence is set.
DcmDRTEncryptedAttributesSequenceInterface::Item getItem(const size_t idx) const
Gets the item at the indicated position.
std::string getEncryptedContentTag() const
bool insertItem(const size_t idx)
Insert an item at the indicated position.
std::string getEncryptedContentTransferSyntaxUIDTag() const
void setSequence(std::vector< DcmDRTEncryptedAttributesSequenceInterface::Item > dcmSequence)
Set the DRTEncryptedAttributesSequence this interface class provides access to.
void addItem(DcmDRTEncryptedAttributesSequenceInterface::Item newItem)
bool setEncryptedContentTransferSyntaxUID(unsigned long idx, std::string parameter)
bool setEncryptedContent(unsigned long idx, int parameter)
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 ...
std::vector< TreePtr > TreePtrVector
a vector of TreePtr - used for sequences
boost::shared_ptr< Tree > TreePtr
shared pointer to a DCMTree::Tree