summaryrefslogtreecommitdiff
path: root/TAO/tao/AnyTypeCode/Any_Special_Impl_T.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/AnyTypeCode/Any_Special_Impl_T.inl')
-rw-r--r--TAO/tao/AnyTypeCode/Any_Special_Impl_T.inl17
1 files changed, 17 insertions, 0 deletions
diff --git a/TAO/tao/AnyTypeCode/Any_Special_Impl_T.inl b/TAO/tao/AnyTypeCode/Any_Special_Impl_T.inl
new file mode 100644
index 00000000000..257a7681bd9
--- /dev/null
+++ b/TAO/tao/AnyTypeCode/Any_Special_Impl_T.inl
@@ -0,0 +1,17 @@
+// -*- C++ -*-
+//
+// $Id$
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+template<typename T, typename from_T, typename to_T>
+ACE_INLINE
+CORBA::Boolean
+TAO::Any_Special_Impl_T<T, from_T, to_T>::demarshal_value (
+ TAO_InputCDR &cdr
+ )
+{
+ return (cdr >> to_T (this->value_, this->bound_));
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL