Mercurial > hg > orthanc-databases
comparison MySQL/Plugins/IndexPlugin.cpp @ 213:c2e4a909de0e
added IndexBackend::Register() to be used in all the index plugins
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 24 Mar 2021 15:59:23 +0100 |
parents | d9ef3f16e6a2 |
children | c8e06b41feec |
comparison
equal
deleted
inserted
replaced
212:821d4ba83dc3 | 213:c2e4a909de0e |
---|---|
69 | 69 |
70 /* Create the database back-end */ | 70 /* Create the database back-end */ |
71 backend_.reset(new OrthancDatabases::MySQLIndex(context, parameters)); | 71 backend_.reset(new OrthancDatabases::MySQLIndex(context, parameters)); |
72 | 72 |
73 /* Register the MySQL index into Orthanc */ | 73 /* Register the MySQL index into Orthanc */ |
74 OrthancDatabases::DatabaseBackendAdapterV2::Register(*backend_); | 74 OrthancDatabases::IndexBackend::Register(*backend_); |
75 } | 75 } |
76 catch (Orthanc::OrthancException& e) | 76 catch (Orthanc::OrthancException& e) |
77 { | 77 { |
78 LOG(ERROR) << e.What(); | 78 LOG(ERROR) << e.What(); |
79 return -1; | 79 return -1; |