dcmtkpp
CFindResponse.h
1 /*************************************************************************
2  * dcmtkpp - 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 _5fd36547_9498_4cf3_87cc_737af51e93a9
10 #define _5fd36547_9498_4cf3_87cc_737af51e93a9
11 
12 #include "dcmtkpp/DataSet.h"
13 #include "dcmtkpp/registry.h"
14 #include "dcmtkpp/Response.h"
15 #include "dcmtkpp/Value.h"
16 
17 namespace dcmtkpp
18 {
19 
21 class CFindResponse: public Response
22 {
23 public:
28  Value::Integer message_id_being_responded_to, Value::Integer status);
29 
35  Value::Integer message_id_being_responded_to, Value::Integer status,
36  DataSet const & dataset);
37 
43  CFindResponse(Message const & message);
44 
46  virtual ~CFindResponse();
47 
48  DCMTKPP_MESSAGE_OPTIONAL_FIELD_INTEGER_MACRO(message_id, registry::MessageID)
49  DCMTKPP_MESSAGE_OPTIONAL_FIELD_STRING_MACRO(
50  affected_sop_class_uid, registry::AffectedSOPClassUID)
51 };
52 
53 }
54 
55 #endif // _5fd36547_9498_4cf3_87cc_737af51e93a9
Definition: Association.cpp:22
virtual ~CFindResponse()
Destructor.
Definition: CFindResponse.cpp:61
C-FIND-RSP message.
Definition: CFindResponse.h:21
CFindResponse(Value::Integer message_id_being_responded_to, Value::Integer status)
Create an find response with given Message ID, and status.
Definition: CFindResponse.cpp:21
Base class for all DIMSE response messages.
Definition: Response.h:20
DICOM Data set.
Definition: DataSet.h:66
Base class for all DIMSE messages.
Definition: Message.h:72