Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / orbsvcs / tests / FtRtEvent / PushConsumer.h
blob278bcd1dd8402ca25876848024090d2312768e19
1 // -*- C++ -*-
2 //=============================================================================
3 /**
4 * @file PushConsumer.h
6 * @author Huang-Ming Huang <hh1@cse.wustl.edu>
7 */
8 //=============================================================================
10 #ifndef PUSHCONSUMERIMPL_H
11 #define PUSHCONSUMERIMPL_H
13 #include "orbsvcs/RtecEventCommS.h"
15 class PushConsumer_impl :
16 public virtual POA_RtecEventComm::PushConsumer
18 public:
19 PushConsumer_impl(CORBA::ORB_ptr orb);
21 virtual void push (
22 const RtecEventComm::EventSet & data);
24 virtual void disconnect_push_consumer ();
25 private:
26 CORBA::ORB_var orb_;
27 PushConsumer_impl(const PushConsumer_impl&);
28 bool operator==(const PushConsumer_impl&);
30 #endif