Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Blocking_Sync_None / Blocking_Sync_None.h
blobeff1fcb4390b892a034208af15fce656ec368a48
2 #ifndef BLOCKING_SYNC_NONE_H
3 #define BLOCKING_SYNC_NONE_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::Blocking_Sync_None interface
9 class Blocking_Sync_None
10 : public virtual POA_Test::Blocking_Sync_None
12 public:
13 /// Constructor
14 Blocking_Sync_None (CORBA::ORB_ptr orb);
16 // = The skeleton methods
17 virtual void slow_operation (const Test::Payload &the_payload,
18 CORBA::ULong sleep_microseconds);
20 virtual void shutdown ();
22 private:
23 /// Use an ORB reference to shutdown the application.
24 CORBA::ORB_var orb_;
27 #include /**/ "ace/post.h"
28 #endif /* BLOCKING_SYNC_NONE_H */