summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/Notify/Bug_3688b_Regression/TestBroadcaster.h
blob: a75caa099963fe6693d818e31a7064c11c64a456 (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
36
37
38
39
40
41
42
43
// $Id$
#ifndef testBroadcaster_h
#define testBroadcaster_h

#include "bug3688_export.h"

#include "orbsvcs/CosNotifyChannelAdminC.h"

#include <string>

class bug3688_Export TestBroadcaster
{
  // public types and methods
  public:
    /// Default constructor.
    TestBroadcaster ( );

    /// Destructor.
    ~TestBroadcaster ( )
      throw ();

    bool connect(
      CORBA::ORB_ptr p_orb,
      std::string const & rc_channelIor
    );

    bool disconnect( );

    bool isConnected( ) const;

    bool sendData( );

  // protected types and methods
  protected:

  // private methods and instance variables
  private:
    CosNotifyChannelAdmin::SequenceProxyPushConsumer_var mv_sequenceProxyPushConsumer;

}; /* end of TestBroadcaster */


#endif /* testBroadcaster_h */