Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git] / TAO / orbsvcs / tests / Bug_2615_Regression / Hello.h
blob5f48cef8b47a4b618c2326c7705ad409d6bacac1
2 #ifndef HELLO_H
3 #define HELLO_H
4 #include /**/ "ace/pre.h"
6 #include "TestS.h"
8 #if defined (_MSC_VER)
9 # pragma warning(push)
10 # pragma warning (disable:4250)
11 #endif /* _MSC_VER */
13 /// Implement the Test::Hello interface
14 class Hello
15 : public virtual POA_Test::Hello
17 public:
18 /// Constructor
19 Hello (CORBA::ORB_ptr orb, Test::Hello_ptr server, CORBA::ULong server_id = 0);
21 // = The skeleton methods
22 virtual void shutdown (void);
24 virtual void ping (void);
26 virtual CORBA::Boolean has_ft_request_service_context (void);
28 private:
29 /// Use an ORB reference to convert strings to objects and shutdown
30 /// the application.
31 CORBA::ORB_var orb_;
34 #if defined(_MSC_VER)
35 # pragma warning(pop)
36 #endif /* _MSC_VER */
38 #include /**/ "ace/post.h"
39 #endif /* HELLO_H */