Inheritance diagram for DcmOtherByteOtherWord:

Public Member Functions | |
| DcmOtherByteOtherWord (const DcmTag &tag, const Uint32 len=0) | |
| constructor. | |
| DcmOtherByteOtherWord (const DcmOtherByteOtherWord &old) | |
| copy constructor | |
| virtual | ~DcmOtherByteOtherWord () |
| destructor | |
| DcmOtherByteOtherWord & | operator= (const DcmOtherByteOtherWord &obj) |
| assignment operator | |
| virtual DcmObject * | clone () const |
| clone method | |
| virtual DcmEVR | ident () const |
| get element type identifier | |
| virtual unsigned long | getVM () |
| get value multiplicity | |
| virtual OFCondition | setVR (DcmEVR vr) |
| set/change the current value representation | |
| virtual void | print (ostream &out, const size_t flags=0, const int level=0, const char *pixelFileName=NULL, size_t *pixelCounter=NULL) |
| print the current value to a stream. | |
| virtual OFBool | canWriteXfer (const E_TransferSyntax newXfer, const E_TransferSyntax oldXfer) |
| check whether the transfer syntax can be changed as specified | |
| virtual OFCondition | write (DcmOutputStream &outStream, const E_TransferSyntax oxfer, const E_EncodingType enctype=EET_UndefinedLength) |
| write object to a stream | |
| virtual OFCondition | writeXML (ostream &out, const size_t flags=0) |
| write object in XML format to a stream | |
| virtual OFCondition | writeSignatureFormat (DcmOutputStream &outStream, const E_TransferSyntax oxfer, const E_EncodingType enctype=EET_UndefinedLength) |
| special write method for creation of digital signatures | |
| virtual OFCondition | getUint8 (Uint8 &byteVal, const unsigned long pos=0) |
| get particular 8 bit value. | |
| virtual OFCondition | getUint16 (Uint16 &wordVal, const unsigned long pos=0) |
| get particular 16 bit value. | |
| virtual OFCondition | getUint8Array (Uint8 *&byteVals) |
| get reference to stored 8 bit data. | |
| virtual OFCondition | getUint16Array (Uint16 *&wordVals) |
| get reference to stored 16 bit data. | |
| virtual OFCondition | getOFString (OFString &stringVal, const unsigned long pos, OFBool normalize=OFTrue) |
| get a particular value as a character string. | |
| virtual OFCondition | getOFStringArray (OFString &stringVal, OFBool normalize=OFTrue) |
| get element value as a character string. | |
| virtual OFCondition | putUint8Array (const Uint8 *byteValue, const unsigned long numBytes) |
| set element value to given 8 bit data. | |
| virtual OFCondition | putUint16Array (const Uint16 *wordValue, const unsigned long numWords) |
| set element value to given 16 bit data. | |
| virtual OFCondition | putString (const char *stringVal) |
| set element value from the given character string. | |
| virtual OFCondition | verify (const OFBool autocorrect=OFFalse) |
| check the currently stored element value | |
Protected Member Functions | |
| virtual void | postLoadValue () |
| method is called after the element value has been loaded. | |
| OFCondition | alignValue () |
| align the element value to an even length (padding) | |
| void | printPixel (ostream &out, const size_t flags, const int level, const char *pixelFileName, size_t *pixelCounter) |
| print pixel data and optionally write it to a binary file. | |
Definition at line 45 of file dcvrobow.h.
|
||||||||||||
|
constructor. Create new element from given tag and length.
Referenced by clone(). |
|
|
copy constructor
|
|
|
align the element value to an even length (padding)
|
|
||||||||||||
|
check whether the transfer syntax can be changed as specified
Reimplemented from DcmElement. Reimplemented in DcmPixelData. |
|
|
clone method
Implements DcmObject. Reimplemented in DcmOverlayData, DcmPixelData, DcmPixelItem, and DcmPolymorphOBOW. Definition at line 77 of file dcvrobow.h. References DcmOtherByteOtherWord(). |
|
||||||||||||||||
|
get a particular value as a character string. The numeric value is converted to hex mode, i.e. an 8 bit value is represented by 2 characters (00..ff) and a 16 bit value by 4 characters (0000..ffff).
Reimplemented from DcmElement. |
|
||||||||||||
|
get element value as a character string. The numeric values are converted to hex mode, i.e. an 8 bit value is represented by 2 characters (00..ff) and a 16 bit value by 4 characters (0000..ffff). In case of VM > 1 the single values are separated by a backslash ('\').
Reimplemented from DcmElement. |
|
||||||||||||
|
get particular 16 bit value. This method is only applicable to OW data.
Reimplemented from DcmElement. |
|
|
get reference to stored 16 bit data. This method is only applicable to OW data.
Reimplemented from DcmElement. |
|
||||||||||||
|
get particular 8 bit value. This method is only applicable to non-OW data, e.g. OB.
Reimplemented from DcmElement. |
|
|
get reference to stored 8 bit data. This method is only applicable to non-OW data, e.g. OB.
Reimplemented from DcmElement. |
|
|
get value multiplicity
Implements DcmObject. |
|
|
get element type identifier
Implements DcmObject. Reimplemented in DcmOverlayData, DcmPixelData, and DcmPixelItem. |
|
|
assignment operator
Referenced by DcmPixelItem::operator=(). |
|
|
method is called after the element value has been loaded. Can be used to correct the value before it is used for the first time. Reimplemented from DcmElement. |
|
||||||||||||||||||||||||
|
print the current value to a stream. The output format of the binary value is a backslash separated sequence of 2- or 4-digit hex numbers, e.g. "00\01\dd" or "0000\7777\aaaa\ffff".
Implements DcmObject. |
|
||||||||||||||||||||||||
|
print pixel data and optionally write it to a binary file. Optional pixel data file is always written in little endian byte-ordering.
|
|
|
set element value from the given character string. The input string is expected to have the same format as described for 'getOFStringArray()' above, i.e. a backslash separated sequence of hexa-decimal numbers.
Reimplemented from DcmElement. |
|
||||||||||||
|
set element value to given 16 bit data. This method is only applicable to OW data.
Reimplemented from DcmElement. |
|
||||||||||||
|
set element value to given 8 bit data. This method is only applicable to non-OW data, e.g. OB.
Reimplemented from DcmElement. Reimplemented in DcmPixelData. |
|
|
set/change the current value representation
Reimplemented from DcmObject. |
|
|
check the currently stored element value
Implements DcmObject. |
|
||||||||||||||||
|
write object to a stream
Reimplemented from DcmElement. Reimplemented in DcmPixelData. |
|
||||||||||||||||
|
special write method for creation of digital signatures
Reimplemented from DcmElement. Reimplemented in DcmPixelData, DcmPixelItem, and DcmPolymorphOBOW. |
|
||||||||||||
|
write object in XML format to a stream
Reimplemented from DcmElement. Reimplemented in DcmPixelData, and DcmPixelItem. |