blob: 05919f2145d0baebaf22d67940a07faf6c264bdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/**
* @file Loopback.h
*
* $Id$
*
*/
#ifndef TAO_RTEC_PERF_LOOPBACK_H
#define TAO_RTEC_PERF_LOOPBACK_H
#include "Federated_TestS.h"
#include "Loopback_Pair.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/**
* @class Loopback
*
* @brief Implement the Control::Loopback interface
*
*/
class TAO_RTEC_Perf_Export Loopback
: public virtual POA_Federated_Test::Loopback
{
public:
/// Constructor
Loopback (CORBA::Long experiment_id,
CORBA::Long base_event_type,
PortableServer::POA_ptr supplier_poa,
PortableServer::POA_ptr consumer_poa,
RtecEventChannelAdmin::EventChannel_ptr ec
ACE_ENV_ARG_DECL);
//@{
/** @name The Federated_Test::Loopback methods
*/
virtual void disconnect (void)
ACE_THROW_SPEC ((CORBA::SystemException));
//@}
private:
Loopback_Pair loopback_pair_;
};
#endif /* TAO_RTEC_PERF_LOOPBACK_H */
|