summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/DevGuideExamples/EventServices/RTEC_MCast_Federated/EchoEventSupplier_i.h
blob: 06d39ff04bda45ae31ea217ecd2c90ac302bd2d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$

// EchoEventSupplier_i.h
// Implements a PushSupplier.

#ifndef _EchoEventSupplier_i_h_
#define _EchoEventSupplier_i_h_

#include "orbsvcs/RtecEventCommS.h"// for POA_CosEventComm::PushSupplier

class EchoEventSupplier_i : public virtual POA_RtecEventComm::PushSupplier
{
  public:
    // Constructor
    EchoEventSupplier_i(CORBA::ORB_ptr orb);

    virtual void disconnect_push_supplier();

  private:
    CORBA::ORB_var orb_;
};

#endif // _EchoEventSupplier_i_h_