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