| 1630 | } |
| 1631 | |
| 1632 | std::vector<std::string> Application::getImportTypes(const std::string& Module) const |
| 1633 | { |
| 1634 | std::vector<std::string> types; |
| 1635 | for (const auto & it : _mImportTypes) { |
| 1636 | if (boost::iequals(Module, it.module)) { |
| 1637 | types.insert(types.end(), it.types.begin(), it.types.end()); |
| 1638 | } |
| 1639 | } |
| 1640 | |
| 1641 | return types; |
| 1642 | } |
| 1643 | |
| 1644 | std::vector<std::string> Application::getImportTypes() const |
| 1645 | { |
no test coverage detected