Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tests / ZIOP / Hello.h
blob1c53b73a4add2d51ae296a9eb55ef4707517d6ad
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 Test::Octet_Seq *get_big_reply (CORBA::ULong size);
17 virtual void big_request (const ::Test::Octet_Seq & octet_in);
19 // = The skeleton methods
20 virtual char * get_string (const char * mystring);
22 virtual void shutdown ();
24 private:
25 /// Use an ORB reference to convert strings to objects and shutdown
26 /// the application.
27 CORBA::ORB_var orb_;
30 #include /**/ "ace/post.h"
31 #endif /* HELLO_H */