Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_2804_Regression / Hello.h
bloba5a13ea2723e2560defb551fa41bca1f87dc803b
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file Hello.h
7 * Header file for recursive type Any insertion and extraction test.
9 * @author Ossama Othman
11 //=============================================================================
14 #ifndef HELLO_H
15 #define HELLO_H
17 #include "TestS.h"
19 class Hello
20 : public virtual POA_Test::Hello
22 public:
24 /// Constructor
25 Hello (CORBA::ORB_ptr orb);
27 // Return the any provide as an "in" argument.
28 virtual CORBA::Any * get_any (CORBA::Any const & the_any);
30 virtual void shutdown (void);
32 private:
34 /// The ORB which will be shutdown by Hello::shutdown().
35 CORBA::ORB_var orb_;
39 #endif /* HELLO_H */