Mercurial > hg > orthanc
comparison OrthancServer/Sources/ServerContext.h @ 4376:b002f9abe802 varian
review of changeset 4375:208029732d51
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 17 Dec 2020 11:27:37 +0100 |
parents | 208029732d51 |
children | 7e0d015ad109 |
comparison
equal
deleted
inserted
replaced
4375:208029732d51 | 4376:b002f9abe802 |
---|---|
245 const DatabaseLookup& lookup, | 245 const DatabaseLookup& lookup, |
246 ResourceType queryLevel, | 246 ResourceType queryLevel, |
247 size_t since, | 247 size_t since, |
248 size_t limit); | 248 size_t limit); |
249 | 249 |
250 // This DicomModification object is intended to be used as a "rules engine" | 250 // This DicomModification object is intended to be used as a |
251 // when de-identifying logs for C-Find, C-Get, and C-Move queries | 251 // "rules engine" when de-identifying logs for C-Find, C-Get, and |
252 // C-Move queries (new in Orthanc 1.8.2) | |
252 DicomModification logsDeidentifierRules_; | 253 DicomModification logsDeidentifierRules_; |
253 bool deidentifyDimseQueryLogs_; | 254 bool deidentifyLogs_; |
254 DicomVersion deidentifyDimseQueryLogsDicomVersion_; | |
255 | 255 |
256 public: | 256 public: |
257 class DicomCacheLocker : public boost::noncopyable | 257 class DicomCacheLocker : public boost::noncopyable |
258 { | 258 { |
259 private: | 259 private: |
507 bool IsTranscodeDicomProtocol() const | 507 bool IsTranscodeDicomProtocol() const |
508 { | 508 { |
509 return transcodeDicomProtocol_; | 509 return transcodeDicomProtocol_; |
510 } | 510 } |
511 | 511 |
512 const std::string& GetDeidentifiedQueryContent(const DicomElement& element) const; | 512 const std::string& GetDeidentifiedContent(const DicomElement& element) const; |
513 }; | 513 }; |
514 } | 514 } |