| 1740 | } |
| 1741 | |
| 1742 | bool Library::ignorefunction(const std::string& functionName) const |
| 1743 | { |
| 1744 | const auto it = utils::as_const(mData->mFunctions).find(functionName); |
| 1745 | if (it != mData->mFunctions.cend()) |
| 1746 | return it->second.ignore; |
| 1747 | return false; |
| 1748 | } |
| 1749 | const std::unordered_map<std::string, Library::Function>& Library::functions() const |
| 1750 | { |
| 1751 | return mData->mFunctions; |