! * \brief get a singleton of LocalFileSystem when needed * \return a singleton instance */
| 52 | * \return a singleton instance |
| 53 | */ |
| 54 | inline static LocalFileSystem *GetInstance(void) { |
| 55 | static LocalFileSystem instance; |
| 56 | return &instance; |
| 57 | } |
| 58 | |
| 59 | private: |
| 60 | LocalFileSystem() {} |
nothing calls this directly
no outgoing calls
no test coverage detected