| 842 | } |
| 843 | |
| 844 | std::string mitk::CustomTagParser::GetExternalJSONDirectory() |
| 845 | { |
| 846 | std::string moduleLocation = us::GetModuleContext()->GetModule()->GetLocation(); |
| 847 | std::string stringToModule; |
| 848 | std::string libraryName; |
| 849 | itksys::SystemTools::SplitProgramPath(moduleLocation, stringToModule, libraryName); |
| 850 | |
| 851 | std::stringstream jsonDirectory; |
| 852 | jsonDirectory << stringToModule << "/CESTRevisionMapping"; |
| 853 | |
| 854 | return jsonDirectory.str(); |
| 855 | } |
nothing calls this directly
no test coverage detected