vega
multi_vr.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <vector>
4 #include <regex>
5 #include <string>
6 
7 #include "vega/vega.h"
8 #include "vega/vr.h"
9 
10 namespace vega {
11  class MultiVR {
12  private:
13  std::vector<VR> m_vrs;
14 
15  public:
18 
19  explicit MultiVR(const std::string& vrs);
20 
21  const std::vector<VR>& vrs() const;
22  bool single() const;
23 
24  bool contains(const VR& vr) const;
25 
26  const VR& to_single_vr() const;
27 
28  bool needs_two_byte_padding() const;
29  bool is_sequence() const;
30 
31  static const MultiVR& from_vr(const VR& vr);
32 
33  friend std::ostream& operator<<(std::ostream& os, const MultiVR& multi_vr);
34  };
35 }
bool is_sequence() const
friend std::ostream & operator<<(std::ostream &os, const MultiVR &multi_vr)
Definition: multi_vr.h:17
Exception()
Definition: vega.h:13
bool single() const
const std::vector< VR > & vrs() const
Definition: multi_vr.h:16
const VR & to_single_vr() const
Definition: vr.h:13
bool needs_two_byte_padding() const
bool contains(const VR &vr) const
The base class for exceptions that are raised by the vega library.
Definition: vega.h:11
Definition: age.h:6
Definition: multi_vr.h:11
MultiVR(const std::string &vrs)
static const MultiVR & from_vr(const VR &vr)