Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Reliable_Oneways / Oneway_Receiver.h
blob84671b4eea93b1760a2b0d87cc8f9403082f36a8
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 ();
19 virtual void destroy ();
21 virtual Test::Shutdown_Helper_ptr get_shutdown_helper ();
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 */