diff OrthancServer/Sources/Database/FindRequest.cpp @ 5676:b744a2cf408a find-refactoring

shorten ParentRetrieveSpecification/ChildrenRetrieveSpecification as ParentSpecification/ChildrenSpecification
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 06 Jul 2024 15:04:28 +0200
parents 74f3aab95886
children dc96401dbe88
line wrap: on
line diff
--- a/OrthancServer/Sources/Database/FindRequest.cpp	Sat Jul 06 15:00:45 2024 +0200
+++ b/OrthancServer/Sources/Database/FindRequest.cpp	Sat Jul 06 15:04:28 2024 +0200
@@ -32,7 +32,7 @@
 
 namespace Orthanc
 {
-  FindRequest::ParentRetrieveSpecification& FindRequest::GetParentRetrieveSpecification(ResourceType level)
+  FindRequest::ParentSpecification& FindRequest::GetParentSpecification(ResourceType level)
   {
     if (!IsResourceLevelAboveOrEqual(level, level_))
     {
@@ -56,7 +56,7 @@
   }
 
 
-  FindRequest::ChildrenRetrieveSpecification& FindRequest::GetChildrenRetrieveSpecification(ResourceType level)
+  FindRequest::ChildrenSpecification& FindRequest::GetChildrenSpecification(ResourceType level)
   {
     if (!IsResourceLevelAboveOrEqual(level_, level))
     {