Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Reliable_Oneways / Oneway_Receiver.h
blobf7653e237c23d34e3c891e7c23dcfb4b0ade24b4
2 #ifndef ONEWAY_RECEIVER_H
3 #define ONEWAY_RECEIVER_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::Oneway_Receiver interface
9 class Oneway_Receiver
10 : public virtual POA_Test::Oneway_Receiver
12 public:
13 /// Constructor
14 Oneway_Receiver (CORBA::ORB_ptr orb);
16 // = The skeleton methods
17 virtual void raise_no_permission (void);
19 virtual void destroy (void);
21 virtual Test::Shutdown_Helper_ptr get_shutdown_helper (void);
23 private:
24 /// Use an ORB reference to convert strings to objects and shutdown
25 /// the application.
26 CORBA::ORB_var orb_;
29 #include /**/ "ace/post.h"
30 #endif /* ONEWAY_RECEIVER_H */