Searches for an identifier object that matches this id.
| 79 | |
| 80 | // Searches for an identifier object that matches this id. |
| 81 | IdentifierSymbol* WorkingMemory::FindIdentifierSymbol(char const* pID) |
| 82 | { |
| 83 | IdSymbolMapIter match = m_IdSymbolMap.find(std::string(pID)) ; |
| 84 | if (match == m_IdSymbolMap.end()) |
| 85 | { |
| 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | return match->second; |
| 90 | } |
| 91 | |
| 92 | void WorkingMemory::SetOutputLinkChangeTracking(bool setting) |
| 93 | { |
no test coverage detected