odil
C++11libraryfortheDICOMstandard
NSetSCU.h
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 _c80c338c_36d7_4724_9732_c7afed87902b
10 #define _c80c338c_36d7_4724_9732_c7afed87902b
11 
12 #include "odil/Association.h"
13 #include "odil/DataSet.h"
14 #include "odil/odil.h"
15 #include "odil/SCU.h"
16 
17 namespace odil
18 {
19 
21 class ODIL_API NSetSCU: public SCU
22 {
23 public:
25  NSetSCU(Association & association);
26 
28  virtual ~NSetSCU();
29 
31  void set_affected_sop_class(DataSet const & dataset);
32 
34 
36  void set( DataSet const & dataset) const;
37 };
38 
39 }
40 
41 #endif // _c80c338c_36d7_4724_9732_c7afed87902b
void set_affected_sop_class(std::string const &sop_class)
Set the affected SOP class.
Definition: SCU.cpp:45
Base class for all Service Class Users.
Definition: SCU.h:21
Definition: Association.cpp:39
DICOM Data set.
Definition: DataSet.h:29
Association.
Definition: Association.h:30
SCU for C-Store services.
Definition: NSetSCU.h:21