comparison OrthancServer/Search/LookupIdentifierQuery.h @ 1764:9ead18ef460a

escape
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 29 Oct 2015 16:08:59 +0100
parents 318c2e83c2bd
children b1291df2f780
comparison
equal deleted inserted replaced
1763:f7014cca73c7 1764:9ead18ef460a
127 typedef std::vector<Disjunction*> Constraints; 127 typedef std::vector<Disjunction*> Constraints;
128 128
129 ResourceType level_; 129 ResourceType level_;
130 Constraints constraints_; 130 Constraints constraints_;
131 131
132 static std::string NormalizeIdentifier(const std::string& value);
133
134 public: 132 public:
135 LookupIdentifierQuery(ResourceType level) : level_(level) 133 LookupIdentifierQuery(ResourceType level) : level_(level)
136 { 134 {
137 } 135 }
138 136
176 static void StoreIdentifiers(IDatabaseWrapper& database, 174 static void StoreIdentifiers(IDatabaseWrapper& database,
177 int64_t resource, 175 int64_t resource,
178 ResourceType level, 176 ResourceType level,
179 const DicomMap& map); 177 const DicomMap& map);
180 178
179 static std::string NormalizeIdentifier(const std::string& value);
180
181 void Print(std::ostream& s) const; 181 void Print(std::ostream& s) const;
182 }; 182 };
183 } 183 }