dcmtkpp
SCP.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 _f4680d8c_18a8_4317_956d_3ae238cb39cc
10 #define _f4680d8c_18a8_4317_956d_3ae238cb39cc
11 
12 #include "dcmtkpp/CEchoRequest.h"
13 #include "dcmtkpp/ServiceRole.h"
14 
15 namespace dcmtkpp
16 {
17 
19 class SCP: public ServiceRole
20 {
21 public:
22  SCP();
23  virtual ~SCP();
24 protected:
26  void _send_echo_response(CEchoRequest const & request) const;
27 };
28 
29 }
30 
31 #endif // _f4680d8c_18a8_4317_956d_3ae238cb39cc
Definition: Association.cpp:22
void _send_echo_response(CEchoRequest const &request) const
Send a C-ECHO response.
Definition: SCP.cpp:36
Base class for all Service Class Users and Providers.
Definition: ServiceRole.h:27
C-ECHO-RQ message.
Definition: CEchoRequest.h:20
Base class for all Service Class Providers.
Definition: SCP.h:19