summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Event_Service/Channel_Clients_T.i
blob: f7c0760fd869a9867d9b3d1a608c7514069bc238 (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
/* -*- C++ -*- */
// $Id$

template <class TARGET> ACE_INLINE
ACE_PushConsumer_Adapter<TARGET>::ACE_PushConsumer_Adapter (TARGET *target)
  : target_ (target)
{
}

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

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

// ************************************************************

template <class TARGET> ACE_INLINE
ACE_PushSupplier_Adapter<TARGET>::ACE_PushSupplier_Adapter (TARGET *target)
  : target_ (target)
{
}

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