Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_1676_Regression / Hello.h
blob53449753f89c15db6a1ebeccc56e171f400ab751
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 : public virtual POA_Test::Hello
11 public:
12 /// Constructor
13 Hello (CORBA::ORB_ptr orb);
15 // = The skeleton methods
16 virtual ::Test::StringList * get_stringList ();
18 virtual void get_stringList2 (::CORBA::Boolean initialize,
19 ::Test::StringList_out osl);
21 virtual void mod_stringList (::Test::StringList & iosl);
23 virtual void shutdown (void);
25 private:
26 /// Use an ORB reference to convert strings to objects and shutdown
27 /// the application.
28 CORBA::ORB_var orb_;
31 #include /**/ "ace/post.h"
32 #endif /* HELLO_H */