20 std::shared_ptr<std::istream> m_is;
21 std::streampos m_eof_pos;
24 RawReader(std::shared_ptr<std::istream> is);
26 const Endian& dicom_endian()
const;
27 void set_dicom_endianness(
const Endian& dicom_endian);
29 bool vr_explicit()
const;
30 void set_vr_explicit(
bool vr_explicit);
34 template <
typename Iter>
35 bool read_into(Iter begin, Iter end);
39 bool read_into(T* ptr);
43 std::streampos tell();
44 std::streampos eof_pos()
const;
45 void seek_pos(std::streampos pos);
46 void seek_delta(std::streampos delta);
50 bool RawReader::read_into(Tag* tag);
53 bool RawReader::read_into(VR* vr);
Endian
Definition: vega.h:24
Exception()
Definition: vega.h:13
The base class for exceptions that are raised by the vega library.
Definition: vega.h:11