MCPcopy Create free account
hub / github.com/IENT/YUView / getMeaningMap

Method getMeaningMap

YUViewLib/src/parser/common/CodingEnum.h:79–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77 }
78
79 std::map<int, std::string> getMeaningMap() const
80 {
81 std::map<int, std::string> m;
82 for (const auto &entry : this->entryVector)
83 {
84 if (entry.meaning.empty())
85 m[int(entry.code)] = entry.name;
86 else
87 m[int(entry.code)] = entry.meaning;
88 }
89 return m;
90 }
91
92 std::string getMeaning(T value) const
93 {

Callers 10

parseMethod · 0.80
parseMethod · 0.80
parseMethod · 0.80
parseMethod · 0.80
parseMethod · 0.80
parseMethod · 0.80
parseMethod · 0.80
parseMethod · 0.80
parseMethod · 0.80
parseMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected