Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / orbsvcs / DevGuideExamples / EventServices / RTEC_Basic / EchoEventSupplier_i.h
blob42d2e35ece201848246b259a9011c471ea027181
1 // EchoEventSupplier_i.h
2 // Implements a PushSupplier.
4 #ifndef _EchoEventSupplier_i_h_
5 #define _EchoEventSupplier_i_h_
7 #include "orbsvcs/RtecEventCommS.h"// for POA_CosEventComm::PushSupplier
9 class EchoEventSupplier_i : public virtual POA_RtecEventComm::PushSupplier
11 public:
12 // Constructor
13 EchoEventSupplier_i(CORBA::ORB_ptr orb);
15 virtual void disconnect_push_supplier();
17 private:
18 CORBA::ORB_var orb_;
21 #endif // _EchoEventSupplier_i_h_