static
| 59 | |
| 60 | // static |
| 61 | unique_ptr<FeaturesOffsetsTable> FeaturesOffsetsTable::Load(string const & filePath) |
| 62 | { |
| 63 | if (!GetPlatform().IsFileExistsByFullPath(filePath)) |
| 64 | return unique_ptr<FeaturesOffsetsTable>(); |
| 65 | return LoadImpl(filePath); |
| 66 | } |
| 67 | |
| 68 | // static |
| 69 | unique_ptr<FeaturesOffsetsTable> FeaturesOffsetsTable::Load(FilesContainerR const & cont, std::string const & tag) |
nothing calls this directly
no test coverage detected