Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / Bug_2595_Regression / Hello.h
blobbda9c7d4f53de9d667a2e1ae78bcf1d9a64bea5b
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 virtual void op (
17 ::Test::Fls_out fstruct,
18 ::Test::Vls_out vstruct);
20 virtual void shutdown ();
22 private:
23 /// Use an ORB reference to convert strings to objects and shutdown
24 /// the application.
25 CORBA::ORB_var orb_;
28 #include /**/ "ace/post.h"
29 #endif /* HELLO_H */