Mercurial > hg > orthanc-databases
diff Framework/Plugins/IndexBackend.cpp @ 403:91124cc8a8c7 db-protobuf
database plugins are informed about the identifier tags
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 11 Apr 2023 11:10:19 +0200 |
parents | 82921a29349a |
children | de6de66d70b2 |
line wrap: on
line diff
--- a/Framework/Plugins/IndexBackend.cpp Sat Apr 08 10:26:03 2023 +0200 +++ b/Framework/Plugins/IndexBackend.cpp Tue Apr 11 11:10:19 2023 +0200 @@ -2792,10 +2792,12 @@ } - DatabaseManager* IndexBackend::CreateSingleDatabaseManager(IDatabaseBackend& backend) + DatabaseManager* IndexBackend::CreateSingleDatabaseManager(IDatabaseBackend& backend, + bool hasIdentifierTags, + const std::list<IdentifierTag>& identifierTags) { std::unique_ptr<DatabaseManager> manager(new DatabaseManager(backend.CreateDatabaseFactory())); - backend.ConfigureDatabase(*manager); + backend.ConfigureDatabase(*manager, hasIdentifierTags, identifierTags); return manager.release(); } }