summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2429_Regression/ChildServant.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Bug_2429_Regression/ChildServant.h')
-rw-r--r--TAO/tests/Bug_2429_Regression/ChildServant.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/TAO/tests/Bug_2429_Regression/ChildServant.h b/TAO/tests/Bug_2429_Regression/ChildServant.h
new file mode 100644
index 00000000000..55d601d3cc0
--- /dev/null
+++ b/TAO/tests/Bug_2429_Regression/ChildServant.h
@@ -0,0 +1,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