19 std::shared_ptr<std::ostream> m_os;
22 explicit RawWriter(std::shared_ptr<std::ostream> os);
24 const Endian& dicom_endian()
const;
25 void set_dicom_endianness(
const Endian& dicom_endian);
27 bool vr_explicit()
const;
28 void set_vr_explicit(
bool vr_explicit);
30 std::streampos tell();
31 void seek_pos(std::streampos pos);
32 void seek_delta(std::streampos delta);
34 template <
typename Iter>
35 size_t write_from(Iter begin, Iter end) {
37 for(
auto it = begin; it != end; ++it) {
38 bytes += this->write_from(*it);
45 size_t write_from(
const T* val);
48 size_t write_from(
const T& val) {
51 const char* raw =
reinterpret_cast<const char*
>(&val);
52 for (
size_t j = 0; j <
sizeof(T); ++j) {
53 m_os->write(raw +
sizeof(T)-j-1, 1);
58 const char* raw =
reinterpret_cast<const char*
>(&val);
59 m_os->write(raw,
sizeof(T));
67 size_t RawWriter::write_from(
const Tag& tag);
70 size_t RawWriter::write_from(
const 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