odil
C++11libraryfortheDICOMstandard
EchoSCU.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 _94f3b347_1f95_49ab_83f6_8710f5a3ad67
10 #define _94f3b347_1f95_49ab_83f6_8710f5a3ad67
11 
12 #include "odil/Association.h"
13 #include "odil/odil.h"
14 #include "odil/SCU.h"
15 
16 namespace odil
17 {
18 
20 class ODIL_API EchoSCU: public SCU
21 {
22 public:
24  EchoSCU(Association & association);
25 
27  virtual ~EchoSCU();
28 
30  void echo() const;
31 };
32 
33 }
34 
35 #endif // _94f3b347_1f95_49ab_83f6_8710f5a3ad67
36 
Base class for all Service Class Users.
Definition: SCU.h:21
Definition: Association.cpp:39
SCU for the C-ECHO services.
Definition: EchoSCU.h:20
Association.
Definition: Association.h:30