comparison Plugins/Engine/OrthancPluginDatabase.cpp @ 1746:d143db00a794 db-changes

SetOfResources
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 26 Oct 2015 16:04:58 +0100
parents 38dda23c7d7d
children 55d52567bebb
comparison
equal deleted inserted replaced
1745:38dda23c7d7d 1746:d143db00a794
592 592
593 return ForwardSingleAnswer(target); 593 return ForwardSingleAnswer(target);
594 } 594 }
595 595
596 596
597 /*
598
599 TODO REMOVE THIS
600
597 void OrthancPluginDatabase::LookupIdentifierExact(std::list<int64_t>& target, 601 void OrthancPluginDatabase::LookupIdentifierExact(std::list<int64_t>& target,
598 ResourceType level, 602 ResourceType level,
599 const DicomTag& tag, 603 const DicomTag& tag,
600 const std::string& value) 604 const std::string& value)
601 { 605 {
641 target.push_back(*it); 645 target.push_back(*it);
642 } 646 }
643 } 647 }
644 } 648 }
645 } 649 }
646 } 650 }*/
647 651
648 652
649 void OrthancPluginDatabase::LookupIdentifier(const LookupIdentifierQuery& query) 653 void OrthancPluginDatabase::LookupIdentifier(std::list<int64_t>& result,
654 ResourceType level,
655 const DicomTag& tag,
656 IdentifierConstraintType type,
657 const std::string& value)
650 { 658 {
651 // TODO 659 // TODO
652 throw OrthancException(ErrorCode_NotImplemented); 660 throw OrthancException(ErrorCode_NotImplemented);
653 } 661 }
654 662