summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/Abstract_Servant_Base.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/Abstract_Servant_Base.inl')
-rw-r--r--ACE/TAO/tao/Abstract_Servant_Base.inl25
1 files changed, 25 insertions, 0 deletions
diff --git a/ACE/TAO/tao/Abstract_Servant_Base.inl b/ACE/TAO/tao/Abstract_Servant_Base.inl
new file mode 100644
index 00000000000..e879919a9d7
--- /dev/null
+++ b/ACE/TAO/tao/Abstract_Servant_Base.inl
@@ -0,0 +1,25 @@
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_INLINE
+TAO_Abstract_ServantBase::TAO_Abstract_ServantBase (void)
+{
+ // No-Op.
+}
+
+ACE_INLINE
+TAO_Abstract_ServantBase::TAO_Abstract_ServantBase
+ (const TAO_Abstract_ServantBase &)
+{
+ // No-Op
+}
+
+ACE_INLINE
+TAO_Abstract_ServantBase &
+TAO_Abstract_ServantBase::operator= (const TAO_Abstract_ServantBase&)
+{
+ return *this;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL