Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / ORB_shutdown / Foo_Bar.h
blob21c0a669204674c2eddf3f977fae630d3314c972
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 Foo_Bar
10 : public virtual POA_Test::Foo
12 public:
13 /// Constructor
14 Foo_Bar (CORBA::ORB_ptr orb);
16 /// Dtor
17 ~Foo_Bar (void);
20 private:
21 /// Use an ORB reference to convert strings to objects and shutdown
22 /// the application.
23 CORBA::ORB_var orb_;
26 #include /**/ "ace/post.h"
27 #endif /* HELLO_H */