comparison OrthancServer/DicomProtocol/DicomUserConnection.h @ 1907:5011a597b6ce

Support of Move Originator Message ID (0000,1031) in C-Store responses driven by C-Move
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 07 Jan 2016 11:28:19 +0100
parents b1291df2f780
children f9f2aa1cc594
comparison
equal deleted inserted replaced
1906:d7c1cb559431 1907:5011a597b6ce
131 131
132 bool IsOpen() const; 132 bool IsOpen() const;
133 133
134 bool Echo(); 134 bool Echo();
135 135
136 void Store(const char* buffer, size_t size); 136 void Store(const char* buffer,
137 size_t size,
138 uint16_t moveMessageID);
137 139
138 void Store(const std::string& buffer); 140 void Store(const std::string& buffer,
141 uint16_t moveMessageID);
139 142
140 void StoreFile(const std::string& path); 143 void StoreFile(const std::string& path,
144 uint16_t moveMessageID);
141 145
142 void Find(DicomFindAnswers& result, 146 void Find(DicomFindAnswers& result,
143 ResourceType level, 147 ResourceType level,
144 const DicomMap& fields); 148 const DicomMap& fields);
145 149