15 bool Import(
const std::filesystem::path& path);
16 void AddImporterFactory(
const std::string& extension, ImporterFactory importerToAdd);
17 void RemoveImporterFactoryByExtension(
const std::string& extension);
18 bool HasImporter(
const std::string& extension)
const;
19 bool HasImporter(
const std::filesystem::path& path)
const;
20 ImporterFactory GetImporterFactoryByExtension(
const std::string& extension)
const;
21 ImporterFactory GetImporterFactoryByPath(
const std::filesystem::path& path)
const;
23 std::map<std::string, ImporterFactory> extensionsToImporterFactories;