12 namespace dictionary {
15 static std::shared_ptr<Dictionary> singleton;
17 std::map<std::string, std::shared_ptr<const Page>> m_name_to_page;
18 std::vector<unsigned> m_popcounts_decreasing;
19 std::map<unsigned, std::set<Tag>> m_popcount_to_tag_masks;
20 std::map<Tag, std::map<Tag,std::shared_ptr<const Page>>> m_mask_tag_to_map_from_value_tag_to_pages;
22 std::map<std::string, std::shared_ptr<PrivateOwner>> m_name_to_private_owner;
24 explicit Dictionary(
const std::string& file_name);
25 void add_pages(
const std::vector<std::shared_ptr<const Page>>& pages);
31 std::shared_ptr<const Page>
page_for(
const Tag& tag)
const;
32 std::shared_ptr<const Page>
page_for(
const std::string& name)
const;
33 std::shared_ptr<PrivateOwner>
private_owner(
const std::string& name)
const;
static void set_dictionary(const std::string &file_name)
Definition: dictionary.h:13
std::shared_ptr< const Page > page_for(const Tag &tag) const
std::shared_ptr< PrivateOwner > private_owner(const std::string &name) const
Class for working with DICOM data element tags.
Definition: tag.h:15
static const Dictionary & instance()