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

// $Id$

#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