comparison OrthancServer/Search/IFindConstraint.h @ 1791:91a5d39ec665 worklists

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 18 Nov 2015 17:26:00 +0100
parents 03b030680e3d
children af6840eb23ee
comparison
equal deleted inserted replaced
1790:bec9edcf0d98 1791:91a5d39ec665
47 47
48 virtual void Setup(LookupIdentifierQuery& lookup, 48 virtual void Setup(LookupIdentifierQuery& lookup,
49 const DicomTag& tag) const = 0; 49 const DicomTag& tag) const = 0;
50 50
51 virtual bool Match(const std::string& value) const = 0; 51 virtual bool Match(const std::string& value) const = 0;
52
53 static IFindConstraint* ParseDicomConstraint(const DicomTag& tag,
54 const std::string& dicomQuery,
55 bool caseSensitive);
52 }; 56 };
53 } 57 }