Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / tests / Bug_3471_Regression / Hello.h
blob786fca746de5395e6fc8184d67de2251cbfb8f12
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 Test::ObjectSeq* get_objects ();
19 virtual void shutdown ();
21 private:
22 CORBA::ORB_var orb_;
25 #include /**/ "ace/post.h"
26 #endif /* HELLO_H */