comparison Core/DicomNetworking/DicomUserConnection.h @ 3808:7f083dfae62b

new REST route: /modalities/{id}/store-straight
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 03 Apr 2020 14:06:13 +0200
parents 4fc24b69446a
children
comparison
equal deleted inserted replaced
3807:2f28c7eb2776 3808:7f083dfae62b
158 158
159 bool Echo(); 159 bool Echo();
160 160
161 void Store(std::string& sopClassUid /* out */, 161 void Store(std::string& sopClassUid /* out */,
162 std::string& sopInstanceUid /* out */, 162 std::string& sopInstanceUid /* out */,
163 const char* buffer, 163 const void* buffer,
164 size_t size, 164 size_t size,
165 const std::string& moveOriginatorAET, 165 const std::string& moveOriginatorAET,
166 uint16_t moveOriginatorID); 166 uint16_t moveOriginatorID);
167 167
168 void Store(std::string& sopClassUid /* out */, 168 void Store(std::string& sopClassUid /* out */,
169 std::string& sopInstanceUid /* out */, 169 std::string& sopInstanceUid /* out */,
170 const char* buffer, 170 const void* buffer,
171 size_t size) 171 size_t size)
172 { 172 {
173 Store(sopClassUid, sopInstanceUid, buffer, size, "", 0); // Not a C-Move 173 Store(sopClassUid, sopInstanceUid, buffer, size, "", 0); // Not a C-Move
174 } 174 }
175 175