summaryrefslogtreecommitdiff
path: root/TAO/tao/BD_String_Argument_T.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-06-27 06:23:42 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-06-27 06:23:42 +0000
commita493b9bd01d76382ddb2204f7342fa4ecfafd7c7 (patch)
treecf8a0cb17051311c06e585b6b16ab6bdd64e6f90 /TAO/tao/BD_String_Argument_T.cpp
parent23e55bf0d609f7371de0e3ed45be49d05c58050c (diff)
downloadATCD-a493b9bd01d76382ddb2204f7342fa4ecfafd7c7.tar.gz
ChangeLogTag: Tue Jun 27 08:25:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/BD_String_Argument_T.cpp')
-rw-r--r--TAO/tao/BD_String_Argument_T.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/TAO/tao/BD_String_Argument_T.cpp b/TAO/tao/BD_String_Argument_T.cpp
index 37b0f3d4afb..93bbc94fae9 100644
--- a/TAO/tao/BD_String_Argument_T.cpp
+++ b/TAO/tao/BD_String_Argument_T.cpp
@@ -13,7 +13,7 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL
template<typename S_var,
size_t BOUND,
- template <typename> class Insert_Policy>
+ class Insert_Policy>
CORBA::Boolean
TAO::In_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::marshal (
TAO_OutputCDR & cdr
@@ -27,13 +27,13 @@ TAO::In_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::marshal (
template<typename S_var,
size_t BOUND,
- template <typename> class Insert_Policy>
+ class Insert_Policy>
void
TAO::In_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
CORBA::Any *any) const
{
typedef typename S_var::s_traits::from_type from_type;
- Insert_Policy<from_type>::any_insert (
+ Insert_Policy::any_insert (
any,
from_type (this->x_, BOUND)
);
@@ -45,7 +45,7 @@ TAO::In_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
template<typename S_var,
size_t BOUND,
- template <typename> class Insert_Policy>
+ class Insert_Policy>
CORBA::Boolean
TAO::Inout_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::marshal (
TAO_OutputCDR & cdr
@@ -57,7 +57,7 @@ TAO::Inout_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::marshal (
template<typename S_var,
size_t BOUND,
- template <typename> class Insert_Policy>
+ class Insert_Policy>
CORBA::Boolean
TAO::Inout_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::demarshal (
TAO_InputCDR & cdr
@@ -72,13 +72,13 @@ TAO::Inout_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::demarshal (
template<typename S_var,
size_t BOUND,
- template <typename> class Insert_Policy>
+ class Insert_Policy>
void
TAO::Inout_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
CORBA::Any *any) const
{
typedef typename S_var::s_traits::from_type from_type;
- Insert_Policy<from_type>::any_insert (
+ Insert_Policy::any_insert (
any,
from_type (this->x_, BOUND)
);
@@ -90,7 +90,7 @@ TAO::Inout_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
template<typename S_var,
size_t BOUND,
- template <typename> class Insert_Policy>
+ class Insert_Policy>
CORBA::Boolean
TAO::Out_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::demarshal (
TAO_InputCDR & cdr
@@ -104,13 +104,13 @@ TAO::Out_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::demarshal (
template<typename S_var,
size_t BOUND,
- template <typename> class Insert_Policy>
+ class Insert_Policy>
void
TAO::Out_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
CORBA::Any *any) const
{
typedef typename S_var::s_traits::from_type from_type;
- Insert_Policy<from_type>::any_insert (
+ Insert_Policy::any_insert (
any,
from_type (this->x_, BOUND)
);
@@ -122,7 +122,7 @@ TAO::Out_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
template<typename S_var,
size_t BOUND,
- template <typename> class Insert_Policy>
+ class Insert_Policy>
CORBA::Boolean
TAO::Ret_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::demarshal (
TAO_InputCDR & cdr
@@ -136,13 +136,13 @@ TAO::Ret_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::demarshal (
template<typename S_var,
size_t BOUND,
- template <typename> class Insert_Policy>
+ class Insert_Policy>
void
TAO::Ret_BD_String_Argument_T<S_var,BOUND,Insert_Policy>::interceptor_value (
CORBA::Any *any) const
{
typedef typename S_var::s_traits::from_type from_type;
- Insert_Policy<from_type>::any_insert (
+ Insert_Policy::any_insert (
any,
from_type (this->x_.in (), BOUND)
);