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/SCU.h"
14 
15 namespace odil
16 {
17 
19 class EchoSCU: public SCU
20 {
21 public:
23  EchoSCU(Association & association);
24 
26  virtual ~EchoSCU();
27 
29  void echo() const;
30 };
31 
32 }
33 
34 #endif // _94f3b347_1f95_49ab_83f6_8710f5a3ad67
35 
void echo() const
Perform DICOM ping.
Definition: EchoSCU.cpp:35
Base class for all Service Class Users.
Definition: SCU.h:20
Definition: Association.cpp:39
SCU for the C-ECHO services.
Definition: EchoSCU.h:19
virtual ~EchoSCU()
Destructor.
Definition: EchoSCU.cpp:28
EchoSCU(Association &association)
Constructor.
Definition: EchoSCU.cpp:21
Association.
Definition: Association.h:29