vega
io_state.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "vega/vega.h"
4 
5 namespace vega {
6  namespace dicom {
7  class IOState {
8  private:
9  const Endian m_machine_endian;
10  Endian m_dicom_endian;
11  bool m_swap;
12 
13  bool m_vr_explicit;
14 
15  public:
16  IOState();
17 
18  const Endian& dicom_endian() const;
19  void set_dicom_endianness(const Endian& dicom_endian);
20 
21  bool vr_explicit() const;
22  void set_vr_explicit(bool vr_explicit);
23 
24  bool swap() const;
25  };
26  }
27 }
Endian
Definition: vega.h:24
Definition: age.h:6