summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/BD_String_SArgument_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/BD_String_SArgument_T.cpp')
-rw-r--r--TAO/tao/PortableServer/BD_String_SArgument_T.cpp154
1 files changed, 154 insertions, 0 deletions
diff --git a/TAO/tao/PortableServer/BD_String_SArgument_T.cpp b/TAO/tao/PortableServer/BD_String_SArgument_T.cpp
new file mode 100644
index 00000000000..a984d92b4c3
--- /dev/null
+++ b/TAO/tao/PortableServer/BD_String_SArgument_T.cpp
@@ -0,0 +1,154 @@
+// $Id$
+
+#ifndef TAO_BD_STRING_SARGUMENT_T_CPP
+#define TAO_BD_STRING_SARGUMENT_T_CPP
+
+#include "tao/PortableServer/BD_String_SArgument_T.h"
+
+#if !defined (__ACE_INLINE__)
+#include "tao/PortableServer/BD_String_SArgument_T.inl"
+#endif /* __ACE_INLINE__ */
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+template<typename S_var,
+ size_t BOUND,
+ class Insert_Policy>
+CORBA::Boolean
+TAO::In_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::demarshal (
+ TAO_InputCDR & cdr
+ )
+{
+ typedef typename S_var::s_traits::to_type to_type;
+ return cdr >> to_type (this->x_.out (), BOUND);
+}
+
+#if TAO_HAS_INTERCEPTORS == 1
+
+template<typename S_var,
+ size_t BOUND,
+ class Insert_Policy>
+void
+TAO::In_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
+ CORBA::Any *any) const
+{
+ typedef typename S_var::s_traits::from_type from_type;
+ Insert_Policy::any_insert (
+ any,
+ from_type (this->x_.in (), BOUND)
+ );
+}
+
+#endif /* TAO_HAS_INTERCEPTORS */
+
+// ===========================================================
+
+template<typename S_var,
+ size_t BOUND,
+ class Insert_Policy>
+CORBA::Boolean
+TAO::Inout_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::marshal (
+ TAO_OutputCDR & cdr
+ )
+{
+ typedef typename S_var::s_traits::from_type from_type;
+ return cdr << from_type (this->x_.in (), BOUND);
+}
+
+template<typename S_var,
+ size_t BOUND,
+ class Insert_Policy>
+CORBA::Boolean
+TAO::Inout_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::demarshal (
+ TAO_InputCDR & cdr
+ )
+{
+ typedef typename S_var::s_traits::to_type to_type;
+ return cdr >> to_type (this->x_.out (), BOUND);
+}
+
+#if TAO_HAS_INTERCEPTORS == 1
+
+template<typename S_var,
+ size_t BOUND,
+ class Insert_Policy>
+void
+TAO::Inout_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::
+interceptor_value (CORBA::Any *any) const
+{
+ typedef typename S_var::s_traits::from_type from_type;
+ Insert_Policy::any_insert (
+ any,
+ from_type (this->x_.in (), BOUND)
+ );
+}
+
+#endif /* TAO_HAS_INTERCEPTORS */
+
+// ==============================================================
+
+template<typename S_var,
+ size_t BOUND,
+ class Insert_Policy>
+CORBA::Boolean
+TAO::Out_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::marshal (
+ TAO_OutputCDR &cdr
+ )
+{
+ typedef typename S_var::s_traits::from_type from_type;
+ return cdr << from_type (this->x_.in (), BOUND);
+}
+
+#if TAO_HAS_INTERCEPTORS == 1
+
+template<typename S_var,
+ size_t BOUND,
+ class Insert_Policy>
+void
+TAO::Out_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::
+interceptor_value (CORBA::Any *any) const
+{
+ typedef typename S_var::s_traits::from_type from_type;
+ Insert_Policy::any_insert (
+ any,
+ from_type (this->x_.in (), BOUND)
+ );
+}
+
+#endif /* TAO_HAS_INTERCEPTORS */
+
+// ============================================================
+
+template<typename S_var,
+ size_t BOUND,
+ class Insert_Policy>
+CORBA::Boolean
+TAO::Ret_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::marshal (
+ TAO_OutputCDR & cdr
+ )
+{
+ typedef typename S_var::s_traits::from_type from_type;
+ return cdr << from_type (this->x_.in (), BOUND);
+}
+
+#if TAO_HAS_INTERCEPTORS == 1
+
+template<typename S_var,
+ size_t BOUND,
+ class Insert_Policy>
+void
+TAO::Ret_BD_String_SArgument_T<S_var,BOUND,Insert_Policy>::
+interceptor_value (CORBA::Any *any) const
+{
+ typedef typename S_var::s_traits::from_type from_type;
+ Insert_Policy::any_insert (
+ any,
+ from_type (this->x_.in (), BOUND)
+ );
+}
+
+#endif /* TAO_HAS_INTERCEPTORS */
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#endif /* TAO_BD_STRING_SARGUMENT_T_CPP */