summaryrefslogtreecommitdiff
path: root/trunk/TAO/tests/Faults/test_i.inl
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/TAO/tests/Faults/test_i.inl')
-rw-r--r--trunk/TAO/tests/Faults/test_i.inl21
1 files changed, 21 insertions, 0 deletions
diff --git a/trunk/TAO/tests/Faults/test_i.inl b/trunk/TAO/tests/Faults/test_i.inl
new file mode 100644
index 00000000000..63f454c670b
--- /dev/null
+++ b/trunk/TAO/tests/Faults/test_i.inl
@@ -0,0 +1,21 @@
+// $Id$
+
+ACE_INLINE
+Callback_i::Callback_i (CORBA::ORB_ptr orb)
+ : orb_ (CORBA::ORB::_duplicate (orb))
+{
+}
+
+ACE_INLINE
+Simple_Server_i::Simple_Server_i (CORBA::ORB_ptr orb)
+ : orb_ (CORBA::ORB::_duplicate (orb))
+{
+}
+
+ACE_INLINE
+Middle_i::Middle_i (CORBA::ORB_ptr orb,
+ Simple_Server_ptr server)
+ : orb_ (CORBA::ORB::_duplicate (orb)),
+ server_ (Simple_Server::_duplicate (server))
+{
+}