comparison Odbc/Plugins/OdbcIndex.h @ 525:451125122692 find-refactoring

created branch find-refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 19 Jul 2024 13:59:27 +0200
parents 54d518dcd74a
children f18e46d7dbf8
comparison
equal deleted inserted replaced
519:586b80ea397c 525:451125122692
90 // New primitive since Orthanc 1.12.0 90 // New primitive since Orthanc 1.12.0
91 virtual bool HasLabelsSupport() const ORTHANC_OVERRIDE 91 virtual bool HasLabelsSupport() const ORTHANC_OVERRIDE
92 { 92 {
93 return false; 93 return false;
94 } 94 }
95
96 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
97 virtual bool HasFindSupport() const ORTHANC_OVERRIDE;
98 #endif
99
100 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
101 virtual void ExecuteFind(Orthanc::DatabasePluginMessages::TransactionResponse& response,
102 DatabaseManager& manager,
103 const Orthanc::DatabasePluginMessages::Find_Request& request) ORTHANC_OVERRIDE;
104 #endif
95 }; 105 };
96 } 106 }