summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/ForwardOnceUponException/test_i.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/ForwardOnceUponException/test_i.inl')
-rwxr-xr-xACE/TAO/tests/ForwardOnceUponException/test_i.inl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ACE/TAO/tests/ForwardOnceUponException/test_i.inl b/ACE/TAO/tests/ForwardOnceUponException/test_i.inl
new file mode 100755
index 00000000000..f31987e49d7
--- /dev/null
+++ b/ACE/TAO/tests/ForwardOnceUponException/test_i.inl
@@ -0,0 +1,19 @@
+// $Id$
+#include "tao/Invocation_Utils.h"
+
+ACE_INLINE
+Simple_Server_i::Simple_Server_i (CORBA::ORB_ptr orb)
+ : orb_ (CORBA::ORB::_duplicate (orb)),
+ ncalls_ (0),
+ raise_exception_ (TAO::FOE_NON)
+{
+}
+
+
+ACE_INLINE
+int Simple_Server_i::ncalls () const
+{
+ return this->ncalls_;
+}
+
+