vega
transfer_syntax.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "vega/vega.h"
4 #include "vega/uid.h"
5 #include <string>
6 #include <map>
7 #include <vector>
8 
9 namespace vega {
10  namespace dicom {
21  public:
22  // See source file for definition
23  // TODO: Include in Doxygen
25  static const std::vector<std::pair<std::string,UID>> NAME_UID_PAIRS;
26 
35 
47  explicit TransferSyntax(const std::string& name);
51  explicit TransferSyntax(const UID& uid);
52 
54  const std::string& name() const;
56  const UID& uid() const;
57 
59  bool is_explicit_vr() const;
61  Endian endianness() const;
63  bool is_deflate() const;
64 
65  bool operator==(const TransferSyntax& other) const;
66  bool operator!=(const TransferSyntax& other) const;
67 
68  private:
69  static std::map<std::string,UID> generate_name_to_uid_map();
70  static std::map<std::string,std::string> generate_uid_to_name_map();
71 
72  std::string m_name;
73  UID m_uid;
74 
75  static const std::map<std::string,UID> NAME_TO_UID_MAP;
76  static const std::map<std::string,std::string> UID_TO_NAME_MAP;
77  };
78  }
79 }
const UID & uid() const
Endian
Definition: vega.h:24
bool operator==(const TransferSyntax &other) const
static const TransferSyntax EXPLICIT_VR_BIG_ENDIAN
Explicit VR and big endian ("1.2.840.10008.1.2.2")
Definition: transfer_syntax.h:34
TransferSyntax()
Blank constructor.
Definition: uid.h:6
A class which encapsulates the DICOM transfer syntaxes.
Definition: transfer_syntax.h:20
static const TransferSyntax EXPLICIT_VR_LITTLE_ENDIAN
Explicit VR and little endian ("1.2.840.10008.1.2.1")
Definition: transfer_syntax.h:30
bool operator!=(const TransferSyntax &other) const
static const TransferSyntax DEFLATED_EXPLICIT_VR_LITTLE_ENDIAN
Explicit VR and little endian ("1.2.840.10008.1.2.1.99")
Definition: transfer_syntax.h:32
Definition: age.h:6
static const TransferSyntax IMPLICIT_VR_LITTLE_ENDIAN
Implicit VR and little endian ("1.2.840.10008.1.2")
Definition: transfer_syntax.h:28
const std::string & name() const
static const std::vector< std::pair< std::string, UID > > NAME_UID_PAIRS
List of mappings from transfer syntax string to corresponding UID.
Definition: transfer_syntax.h:25