Odil
A C++11 library for the DICOM standard
NSetRequest.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 _8125ab8d_bf37_4116_8ca8_93151ba022a8
10 #define _8125ab8d_bf37_4116_8ca8_93151ba022a8
11 
12 #include "odil/message/Request.h"
13 #include "odil/odil.h"
14 #include "odil/registry.h"
15 #include "odil/Value.h"
16 
17 namespace odil
18 {
19 
20 namespace message
21 {
22 
25 {
26 public:
32  NSetRequest(std::shared_ptr<Message> message);
33 
39  Value::Integer message_id,
40  Value::String const & requested_sop_class_uid,
41  Value::String const & requested_sop_instance_uid,
42  std::shared_ptr<DataSet> dataset);
43 
45  requested_sop_class_uid, registry::RequestedSOPClassUID)
47  requested_sop_instance_uid, registry::RequestedSOPInstanceUID)
48 
49 };
50 
51 }
52 
53 }
54 
55 #endif // _8125ab8d_bf37_4116_8ca8_93151ba022a8
int64_t Integer
Integer type.
Definition: Value.h:42
std::string String
String type.
Definition: Value.h:48
N-Set-RQ message.
Definition: NSetRequest.h:25
NSetRequest(std::shared_ptr< Message > message)
Create a N-Set-RQ from a generic Message.
NSetRequest(Value::Integer message_id, Value::String const &requested_sop_class_uid, Value::String const &requested_sop_instance_uid, std::shared_ptr< DataSet > dataset)
Create an NSet request with given Message ID and requested SOP class UID and SOP Instance UID.
ODIL_MESSAGE_MANDATORY_FIELD_STRING_MACRO(requested_sop_class_uid, registry::RequestedSOPClassUID) ODIL_MESSAGE_MANDATORY_FIELD_STRING_MACRO(requested_sop_instance_uid
Base class for all DIMSE request messages.
Definition: Request.h:25
#define ODIL_MESSAGE_MANDATORY_FIELD_STRING_MACRO(name, tag)
Definition: Message.h:64
Tag const RequestedSOPInstanceUID(0x0000, 0x1001)
Tag const RequestedSOPClassUID(0x0000, 0x0003)
Definition: Association.h:25
#define ODIL_API
Definition: odil.h:28