comparison SQLite/Plugins/SQLiteIndex.h @ 391:d14e6ff04a5c db-protobuf

added primitives to handle labels
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Apr 2023 12:09:46 +0200
parents 3d6886f3e5b3
children 19bd3ee1f0b3
comparison
equal deleted inserted replaced
390:eb80f7c5e7d8 391:d14e6ff04a5c
56 const char* publicId, 56 const char* publicId,
57 OrthancPluginResourceType type) ORTHANC_OVERRIDE; 57 OrthancPluginResourceType type) ORTHANC_OVERRIDE;
58 58
59 // New primitive since Orthanc 1.5.2 59 // New primitive since Orthanc 1.5.2
60 virtual int64_t GetLastChangeIndex(DatabaseManager& manager) ORTHANC_OVERRIDE; 60 virtual int64_t GetLastChangeIndex(DatabaseManager& manager) ORTHANC_OVERRIDE;
61
62 // New primitive since Orthanc 1.12.0
63 virtual bool HasLabelsSupport() const ORTHANC_OVERRIDE
64 {
65 return false;
66 }
61 }; 67 };
62 } 68 }