Mercurial > hg > orthanc
changeset 3822:0d5f3a438e14 transcoding
cont
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 10 Apr 2020 11:39:40 +0200 |
parents | f2488b645f5f |
children | 897ca3103253 |
files | UnitTestsSources/FromDcmtkTests.cpp |
diffstat | 1 files changed, 15 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/UnitTestsSources/FromDcmtkTests.cpp Thu Apr 09 18:29:42 2020 +0200 +++ b/UnitTestsSources/FromDcmtkTests.cpp Fri Apr 10 11:39:40 2020 +0200 @@ -3013,6 +3013,12 @@ ProposePresentationContext(sopClassUid, ts); } + size_t GetRemainingPropositions() const + { + assert(proposed_.size() <= MAX_PROPOSED_PRESENTATIONS); + return MAX_PROPOSED_PRESENTATIONS - proposed_.size(); + } + void ProposePresentationContext(const std::string& sopClassUid, const std::set<DicomTransferSyntax>& transferSyntaxes) { @@ -4035,6 +4041,15 @@ FindInternal(result, dataset, sopClass, true, NULL); } }; + + + class DicomStorageUserConnection : public boost::noncopyable + { + private: + std::unique_ptr<DicomAssociation> association_; + + public: + }; }