Odil
A C++11 library for the DICOM standard
BulkData.h
Go to the documentation of this file.
1 /*************************************************************************
2  * odil - Copyright (C) Universite de Strasbourg
3  * Distributed under the terms of the CeCILL-B license, as published by
4  * the CEA-CNRS-INRIA. Refer to the LICENSE file or to
5  * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
6  * for details.
7  ************************************************************************/
8 
9 #ifndef _a63ad009_f45b_4e22_b750_ad1b12ba7f13
10 #define _a63ad009_f45b_4e22_b750_ad1b12ba7f13
11 
12 #include <cstdint>
13 #include <string>
14 #include <vector>
15 
16 namespace odil
17 {
18 
19 namespace webservices
20 {
21 
23 struct BulkData
24 {
25  std::vector<uint8_t> data;
26  std::string type;
27  std::string location;
28 };
29 
30 }
31 
32 }
33 
34 #endif // _a63ad009_f45b_4e22_b750_ad1b12ba7f13
Definition: Association.h:25
Bulk data transmitted by web services (WADO-RS, STOW, etc.)
Definition: BulkData.h:24
std::string location
Definition: BulkData.h:27
std::vector< uint8_t > data
Definition: BulkData.h:25
std::string type
Definition: BulkData.h:26