Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / tests / Bug_2804_Regression / Hello.h
blob97d878316d8cf5cecc933e09f2089a48c691ca16
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:
23 /// Constructor
24 Hello (CORBA::ORB_ptr orb);
26 // Return the any provide as an "in" argument.
27 virtual CORBA::Any * get_any (CORBA::Any const & the_any);
29 virtual void shutdown ();
31 private:
32 /// The ORB which will be shutdown by Hello::shutdown().
33 CORBA::ORB_var orb_;
36 #endif /* HELLO_H */