Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef GDCMIMPLICITDATAELEMENT_H
00016 #define GDCMIMPLICITDATAELEMENT_H
00017
00018 #include "gdcmDataElement.h"
00019
00020 namespace gdcm
00021 {
00022
00023 class ExplicitImplicitDataElement;
00028 class GDCM_EXPORT ImplicitDataElement : 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 template <typename TSwap>
00040 const std::ostream &Write(std::ostream& os) const;
00041 };
00042
00043 }
00044
00045 #include "gdcmImplicitDataElement.txx"
00046
00047 #endif //GDCMIMPLICITDATAELEMENT_H