| 509 | } |
| 510 | |
| 511 | std::vector<int> mitk::CustomTagParser::GetInternalRevisions() |
| 512 | { |
| 513 | const std::vector<us::ModuleResource> configs = |
| 514 | us::GetModuleContext()->GetModule()->FindResources("/", "*.json", false); |
| 515 | |
| 516 | std::vector<int> availableRevisionsVector; |
| 517 | |
| 518 | for (const auto& resource : configs) |
| 519 | { |
| 520 | availableRevisionsVector.push_back(std::stoi(resource.GetBaseName())); |
| 521 | } |
| 522 | |
| 523 | return availableRevisionsVector; |
| 524 | } |
| 525 | |
| 526 | std::vector<int> mitk::CustomTagParser::GetExternalRevisions() |
| 527 | { |
nothing calls this directly
no test coverage detected