Odil
A C++11 library for the DICOM standard
CStoreResponse.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 _7e193624_081c_47dd_a011_986e96916ea9
10 #define _7e193624_081c_47dd_a011_986e96916ea9
11 
12 #include "odil/odil.h"
13 #include "odil/registry.h"
14 #include "odil/message/Response.h"
15 #include "odil/Value.h"
16 
17 namespace odil
18 {
19 
20 namespace message
21 {
22 
24 class ODIL_API CStoreResponse: public Response
25 {
26 public:
28  enum Status
29  {
30  // Failure
31  RefusedOutOfResources=0xA700,
32  ErrorDataSetDoesNotMatchSOPClass=0xA900,
33  ErrorCannotUnderstand=0xC000,
34  // Warning
35  CoercionOfDataElements=0xB000,
36  DataSetDoesNotMatchSOPClass=0xB007,
37  ElementsDiscarded=0xB006,
38  };
39 
44  Value::Integer message_id_being_responded_to, Value::Integer status);
45 
51  CStoreResponse(std::shared_ptr<Message const> message);
52 
55  affected_sop_class_uid, registry::AffectedSOPClassUID)
57  affected_sop_instance_uid, registry::AffectedSOPInstanceUID)
58 };
59 
60 }
61 
62 }
63 
64 #endif // _7e193624_081c_47dd_a011_986e96916ea9
odil::message::CStoreResponse
C-STORE-RSP message.
Definition: CStoreResponse.h:36
ODIL_MESSAGE_OPTIONAL_FIELD_STRING_MACRO
#define ODIL_MESSAGE_OPTIONAL_FIELD_STRING_MACRO(name, tag)
Definition: Message.h:82
odil::registry::MessageID
const Tag MessageID(0x0000, 0x0110)
Response.h
odil
Definition: Association.h:24
ODIL_API
#define ODIL_API
Definition: odil.h:28
odil.h
ODIL_MESSAGE_OPTIONAL_FIELD_INTEGER_MACRO
#define ODIL_MESSAGE_OPTIONAL_FIELD_INTEGER_MACRO(name, tag)
Definition: Message.h:79
odil::registry::Status
const Tag Status(0x0000, 0x0900)
registry.h
odil::Value::Integer
int64_t Integer
Integer type.
Definition: Value.h:48
odil::registry::AffectedSOPClassUID
const Tag AffectedSOPClassUID(0x0000, 0x0002)
Value.h
odil::registry::AffectedSOPInstanceUID
const Tag AffectedSOPInstanceUID(0x0000, 0x1000)