Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_1482_Regression / Hello.h
blob7a9e7650c397ee6d84af153f94a2a966a17b46b0
2 #ifndef HELLO_H
3 #define HELLO_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 /// Implement the Test::Hello interface
9 class Hello
10 : public virtual POA_Test::Hello
12 public:
13 /// Constructor
14 Hello (CORBA::ORB_ptr orb);
16 // = The skeleton methods
17 virtual CORBA::ULong next_prime ();
19 private:
20 /// Use an ORB reference to convert strings to objects and shutdown
21 /// the application.
22 CORBA::ORB_var orb_;
24 /// Mutex
25 TAO_SYNCH_MUTEX mutex_;
27 /// Latest prime
28 CORBA::ULong latest_prime_;
31 #include /**/ "ace/post.h"
32 #endif /* HELLO_H */