summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2429_Regression/ChildServant.h
blob: 55d601d3cc048eb7b75a45bb372e28f9637a8b79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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 ()
        ACE_THROW_SPEC ((CORBA::SystemException));
   virtual void childMethod ()
        ACE_THROW_SPEC ((CORBA::SystemException));
   virtual void shutdown ()
        ACE_THROW_SPEC ((CORBA::SystemException));

 private:
   CORBA::ORB_var orb_;
};

#endif