vega
private_owner.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "vega/tag.h"
4 
5 #include <string>
6 #include <map>
7 #include <memory>
8 
9 namespace vega {
10  namespace dictionary {
11  class Page;
12 
13  class PrivateOwner {
14  private:
15  const std::string m_name;
16 
17  // Tag of form (gggg, xxee)
18  // gggg is the group, and 00ee is the element, where the xx part is a non-unique block identifier.
19  // The block identifier is used to distingush between private owners that use the same group.
20  // For example,
21  // (0009,....) could be SIENET and SPI simultaneously. In this case, the PrivateOwner
22  // tag of (0009,00xx) would carry a string representing the owner name, and the xx would mark
23  // the private block that it uses, which would have elements of the form (0009,xxee) where ee
24  // uniquely determines the element. For example:
25  //
26  // (0009,0010) "SIENET"
27  // (0009,0011) "SPI"
28  // (0009,1001) "[SIENET] SIENET Command Field"
29  // (0009,1110) "[SPI] Comments"
30  std::map<Tag::group_type, std::map<Tag::element_type, std::shared_ptr<const Page>>> m_group_to_element_to_page;
31 
32  public:
33  explicit PrivateOwner(const std::string& name);
34 
35  void add_page(std::shared_ptr<const Page> page);
36  const std::string& name() const;
37 
38  std::shared_ptr<const Page> find_page(const Tag& tag) const;
39  };
40  }
41 }
const std::string & name() const
Definition: age.h:6
void add_page(std::shared_ptr< const Page > page)
Definition: private_owner.h:13
PrivateOwner(const std::string &name)
std::shared_ptr< const Page > find_page(const Tag &tag) const
Class for working with DICOM data element tags.
Definition: tag.h:15