* @brief Get the currently active file system, if any * @retval IFS::FileSystem* */
| 62 | * @retval IFS::FileSystem* |
| 63 | */ |
| 64 | inline IFS::FileSystem* getFileSystem() |
| 65 | { |
| 66 | if(SmingInternal::activeFileSystem == nullptr) { |
| 67 | debug_e("ERROR: No active file system"); |
| 68 | } |
| 69 | return SmingInternal::activeFileSystem; |
| 70 | } |
| 71 | |
| 72 | /** @brief Sets the currently active file system |
| 73 | * @param fileSystem |
no outgoing calls
no test coverage detected