comparison MySQL/Plugins/MySQLIndex.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
83 // New primitive since Orthanc 1.12.0 83 // New primitive since Orthanc 1.12.0
84 virtual bool HasLabelsSupport() const ORTHANC_OVERRIDE 84 virtual bool HasLabelsSupport() const ORTHANC_OVERRIDE
85 { 85 {
86 return true; 86 return true;
87 } 87 }
88
89 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
90 virtual bool HasFindSupport() const ORTHANC_OVERRIDE;
91 #endif
92
93 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
94 virtual void ExecuteFind(Orthanc::DatabasePluginMessages::TransactionResponse& response,
95 DatabaseManager& manager,
96 const Orthanc::DatabasePluginMessages::Find_Request& request) ORTHANC_OVERRIDE;
97 #endif
88 }; 98 };
89 } 99 }