Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef GDCMVR16EXPLICITDATAELEMENT_H
00016 #define GDCMVR16EXPLICITDATAELEMENT_H
00017
00018 #include "gdcmDataElement.h"
00019
00020 namespace gdcm
00021 {
00022
00029 class GDCM_EXPORT VR16ExplicitDataElement : public DataElement
00030 {
00031 public:
00032 VL GetLength() const;
00033
00034 template <typename TSwap>
00035 std::istream &Read(std::istream &is);
00036
00037 template <typename TSwap>
00038 std::istream &ReadWithLength(std::istream &is, VL & length);
00039
00040
00041
00042
00043 };
00044
00045 }
00046
00047 #include "gdcmVR16ExplicitDataElement.txx"
00048
00049 #endif //GDCMVR16EXPLICITDATAELEMENT_H
00050