summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2429_Regression/ChildServant.h
blob: f2d715469c2310207046156b1089f94f29f122d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CHILDSERVANT_H
#define CHILDSERVANT_H

#include "ChildS.h"

class ChildServant
  : public virtual POA_Child
{
 public:
   ChildServant (CORBA::ORB_ptr orb);
   virtual void parentMethod ();
   virtual void childMethod ();
   virtual void shutdown ();

 private:
   CORBA::ORB_var orb_;
};

#endif