vega
preamble.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <fstream>
4 #include <memory>
5 
6 #include "vega/dicom/reader.h"
7 
8 namespace vega {
9  namespace dicom {
10  class Writer;
11 
12  class Preamble {
13  private:
14  bool m_present;
15 
16  public:
17  Preamble();
18  explicit Preamble(Reader& reader);
19 
20  bool present() const;
21 
22  size_t write(std::shared_ptr<Writer> writer);
23  };
24  }
25 }
Definition: age.h:6