Odil
A C++11 library for the DICOM standard
Utils.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 _6df14dad_16fc_486d_b7e0_728127e7c579
10 #define _6df14dad_16fc_486d_b7e0_728127e7c579
11 
12 namespace odil
13 {
14 
15 namespace webservices
16 {
17 
26 enum class Type
27 {
28  None,
29  DICOM,
30  BulkData,
31  PixelData,
32 };
33 
35 enum class Representation
36 {
37  DICOM,
38  DICOM_XML,
39  DICOM_JSON,
40 };
41 
42 
43 }
44 
45 }
46 
47 #endif // _6df14dad_16fc_486d_b7e0_728127e7c579
48 
Definition: Association.h:24
Type
Type of the request or response (use for WADO & QIDO).
Definition: Utils.h:26
Representation
Data representation for DICOM requests and responses.
Definition: Utils.h:35