| 76 | bool RegisteredStringMap::isModified() const { return m_modified; } |
| 77 | void RegisteredStringMap::clearModifiedFlag() { m_modified = false; } |
| 78 | std::vector<std::string> RegisteredStringMap::getEntries() const { |
| 79 | return m_regEntries; |
| 80 | } |
| 81 | |
| 82 | util::StringID CorrelatedStringMap::getStringID(std::string const &str) { |
| 83 | return m_local.getStringID(str); |
nothing calls this directly
no outgoing calls
no test coverage detected