18 namespace manipulators {
22 namespace dictionary {
34 RawReader m_raw_reader;
35 bool m_allow_any_explicit_vr;
38 Reader(std::shared_ptr<std::istream> is,
bool allow_any_explicit_vr =
false);
40 RawReader& raw_reader();
42 const Endian& dicom_endian()
const;
43 void set_dicom_endianness(
const Endian& dicom_endian);
45 bool vr_explicit()
const;
46 void set_vr_explicit(
bool vr_explicit);
50 std::shared_ptr<DataElement> read_data_element(std::shared_ptr<DataSet> parent);
51 std::shared_ptr<DataSet> read_data_set(std::shared_ptr<DataElement> parent);
55 std::shared_ptr<DataElement> read_data_element(
const Tag& tag, std::shared_ptr<DataSet> parent);
59 std::streampos tell();
60 void seek_pos(std::streampos pos);
61 void seek_delta(std::streampos delta);
64 static std::shared_ptr<manipulators::ValueManipulator>
manipulator_for(
const DataElement& element);
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
Definition: value_manipulator.h:29
std::shared_ptr< manipulators::ValueManipulator > manipulator_for(const dicom::DataElement &element)
Class for working with DICOM data element tags.
Definition: tag.h:15