| 72 | } |
| 73 | |
| 74 | void UniqueIdChecker::initUsedFunctionIds(Interface *iface) |
| 75 | { |
| 76 | m_usedFunctionIds.clear(); |
| 77 | Interface::function_vector_t functions = iface->getFunctions(); |
| 78 | if (0 < functions.size()) |
| 79 | { |
| 80 | for (unsigned int i = 0; i < functions.size(); ++i) |
| 81 | { |
| 82 | m_usedFunctionIds.push_back(make_pair(functions[i]->getUniqueId(), functions[i]->getName())); |
| 83 | } |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | void UniqueIdChecker::setInterfaceId(Interface *iface, Annotation *interfaceId) |
| 88 | { |
nothing calls this directly
no test coverage detected