comparison SQLite/Plugins/SQLiteIndex.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 35d2df9572b1
comparison
equal deleted inserted replaced
519:586b80ea397c 525:451125122692
65 // New primitive since Orthanc 1.12.0 65 // New primitive since Orthanc 1.12.0
66 virtual bool HasLabelsSupport() const ORTHANC_OVERRIDE 66 virtual bool HasLabelsSupport() const ORTHANC_OVERRIDE
67 { 67 {
68 return true; 68 return true;
69 } 69 }
70
71 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
72 virtual bool HasFindSupport() const ORTHANC_OVERRIDE;
73 #endif
74
75 #if ORTHANC_PLUGINS_VERSION_IS_ABOVE(1, 12, 5)
76 virtual void ExecuteFind(Orthanc::DatabasePluginMessages::TransactionResponse& response,
77 DatabaseManager& manager,
78 const Orthanc::DatabasePluginMessages::Find_Request& request) ORTHANC_OVERRIDE;
79 #endif
70 }; 80 };
71 } 81 }