summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Channel_Clients_T.cpp
blob: cc1d2ea78b97a69a0e7d5e7d8a6a69aba3efbb80 (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
// $Id$

#ifndef ACE_CHANNEL_CLIENTS_T_C
#define ACE_CHANNEL_CLIENTS_T_C

#include "orbsvcs/Channel_Clients_T.h"

#if !defined (__ACE_INLINE__)
#include "orbsvcs/Channel_Clients_T.i"
#endif /* __ACE_INLINE__ */

template<class TARGET> void
ACE_PushConsumer_Adapter<TARGET>::push (const RtecEventComm::EventSet& events,
					CORBA::Environment &_env)
{
  target_->push (events, _env);
}

template<class TARGET> void
ACE_PushConsumer_Adapter<TARGET>::disconnect_push_consumer (CORBA::Environment &_env)
{
  target_->disconnect_push_consumer (_env);
}

template<class TARGET> void
ACE_PushSupplier_Adapter<TARGET>::disconnect_push_supplier (CORBA::Environment &_env)
{
  target_->disconnect_push_supplier (_env);
}

#endif /* ACE_CHANNEL_CLIENTS_T_C */