vega
writer.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <ostream>
4 #include <string>
5 #include <vector>
6 #include <memory>
7 
8 #include "vega/vega.h"
9 #include "vega/tag.h"
10 #include "vega/vr.h"
11 #include "vega/dicom/io_state.h"
12 #include "vega/dicom/raw_writer.h"
14 #include "vega/dicom/data_set.h"
16 
17 namespace vega {
18  namespace dicom {
19  class Writer {
20  public:
21  class WritingError : public vega::Exception { using vega::Exception::Exception; };
22 
23  private:
24  RawWriter m_raw_writer;
25 
26  public:
27  explicit Writer(std::shared_ptr<std::ostream> os);
28 
29  RawWriter& raw_writer();
30 
31  const Endian& dicom_endian() const;
32  void set_dicom_endianness(const Endian& dicom_endian);
33 
34  bool vr_explicit() const;
35  void set_vr_explicit(bool vr_explicit);
36 
37  std::streampos tell();
38  void seek_pos(std::streampos pos);
39  void seek_delta(std::streampos delta);
40 
41  size_t write_element(std::shared_ptr<DataElement> element);
42  size_t write_data_set(std::shared_ptr<DataSet> data_set);
43  };
44  }
45 }
46 
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: age.h:6