comparison PostgreSQL/Plugins/PostgreSQLIndex.h @ 366:cd9521e04249 attach-custom-data

DatabaseBackendAdapterV4: added support for customData + revision when not already done
author Alain Mazy <am@osimis.io>
date Thu, 15 Sep 2022 18:12:34 +0200
parents cc7af42d4f23
children
comparison
equal deleted inserted replaced
365:7671fa7f099e 366:cd9521e04249
48 virtual bool HasRevisionsSupport() const ORTHANC_OVERRIDE 48 virtual bool HasRevisionsSupport() const ORTHANC_OVERRIDE
49 { 49 {
50 return true; 50 return true;
51 } 51 }
52 52
53 virtual bool HasAttachmentCustomDataSupport() const ORTHANC_OVERRIDE
54 {
55 return true;
56 }
57
53 virtual int64_t CreateResource(DatabaseManager& manager, 58 virtual int64_t CreateResource(DatabaseManager& manager,
54 const char* publicId, 59 const char* publicId,
55 OrthancPluginResourceType type) 60 OrthancPluginResourceType type)
56 ORTHANC_OVERRIDE; 61 ORTHANC_OVERRIDE;
57 62