| 35 | } |
| 36 | |
| 37 | bool CustomInstructionsManager::ensureDirectoryExists() const |
| 38 | { |
| 39 | QDir dir(getInstructionsDirectory()); |
| 40 | if (!dir.exists()) { |
| 41 | return dir.mkpath("."); |
| 42 | } |
| 43 | return true; |
| 44 | } |
| 45 | |
| 46 | bool CustomInstructionsManager::loadInstructions() |
| 47 | { |
nothing calls this directly
no outgoing calls
no test coverage detected