Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / tests / Bug_2429_Regression / ChildServant.h
blobf2d715469c2310207046156b1089f94f29f122d8
1 #ifndef CHILDSERVANT_H
2 #define CHILDSERVANT_H
4 #include "ChildS.h"
6 class ChildServant
7 : public virtual POA_Child
9 public:
10 ChildServant (CORBA::ORB_ptr orb);
11 virtual void parentMethod ();
12 virtual void childMethod ();
13 virtual void shutdown ();
15 private:
16 CORBA::ORB_var orb_;
19 #endif