comparison OrthancServer/Plugins/Engine/OrthancPluginDatabase.cpp @ 5249:f22c8fac764b db-protobuf

added "/tools/labels" to list all the labels that are associated with any resource
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 07 Apr 2023 22:54:57 +0200
parents a7d95f951f8a
children 176bc05f85f4 48b8dae6dc77
comparison
equal deleted inserted replaced
5248:a7d95f951f8a 5249:f22c8fac764b
1439 virtual void ListLabels(std::set<std::string>& target, 1439 virtual void ListLabels(std::set<std::string>& target,
1440 int64_t resource) ORTHANC_OVERRIDE 1440 int64_t resource) ORTHANC_OVERRIDE
1441 { 1441 {
1442 throw OrthancException(ErrorCode_InternalError); // Not supported 1442 throw OrthancException(ErrorCode_InternalError); // Not supported
1443 } 1443 }
1444
1445
1446 virtual void ListAllLabels(std::set<std::string>& target) ORTHANC_OVERRIDE
1447 {
1448 throw OrthancException(ErrorCode_InternalError); // Not supported
1449 }
1444 }; 1450 };
1445 1451
1446 1452
1447 void OrthancPluginDatabase::CheckSuccess(OrthancPluginErrorCode code) 1453 void OrthancPluginDatabase::CheckSuccess(OrthancPluginErrorCode code)
1448 { 1454 {