vega
sop_class.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <map>
5 #include <vector>
6 
7 #include "vega/uid.h"
8 #include "vega/tag.h"
9 
10 namespace vega {
11  namespace dicom {
20  class SOPClass {
21  private:
22  // See source file for definition
23  static const std::vector<std::pair<std::string,UID>> NAME_UID_PAIRS;
24  static const std::map<std::string,UID> NAME_TO_UID_MAP;
25  static const std::map<std::string,std::string> UID_TO_NAME_MAP;
26 
27  public:
28  static const Tag TAG;
29 
31  SOPClass();
34  explicit SOPClass(const std::string& sop_class_name);
36  explicit SOPClass(const UID& sop_class_uid);
37 
38  const std::string& name() const;
39  const UID& uid() const;
40 
41  private:
42  static std::map<std::string,UID> generate_name_to_uid_map();
43  static std::map<std::string,std::string> generate_uid_to_name_map();
44 
45  std::string m_name;
46  UID m_uid;
47  };
48  }
49 }
SOPClass()
Creates a blank SOPClass.
Definition: uid.h:6
static const Tag TAG
Definition: sop_class.h:28
A class which wraps the media storage SOP class.
Definition: sop_class.h:20
const UID & uid() const
const std::string & name() const
Definition: age.h:6
Class for working with DICOM data element tags.
Definition: tag.h:15