summaryrefslogtreecommitdiff
path: root/TAO/tao/Basic_SArgument_T.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Basic_SArgument_T.cpp')
-rw-r--r--TAO/tao/Basic_SArgument_T.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/TAO/tao/Basic_SArgument_T.cpp b/TAO/tao/Basic_SArgument_T.cpp
index 2bfd618f9a6..afa1323b7df 100644
--- a/TAO/tao/Basic_SArgument_T.cpp
+++ b/TAO/tao/Basic_SArgument_T.cpp
@@ -21,8 +21,6 @@ TAO::In_Basic_SArgument_T<S>::demarshal (TAO_InputCDR &cdr)
return cdr >> this->x_;
}
-#if TAO_HAS_INTERCEPTORS == 1
-
template<typename S>
void
TAO::In_Basic_SArgument_T<S>::interceptor_param (Dynamic::Parameter & p)
@@ -31,8 +29,6 @@ TAO::In_Basic_SArgument_T<S>::interceptor_param (Dynamic::Parameter & p)
p.mode = CORBA::PARAM_IN;
}
-#endif /* TAO_HAS_INTERCEPTORS */
-
// ===========================================================
template<typename S>
@@ -49,8 +45,6 @@ TAO::Inout_Basic_SArgument_T<S>::demarshal (TAO_InputCDR & cdr)
return cdr >> this->x_;
}
-#if TAO_HAS_INTERCEPTORS == 1
-
template<typename S>
void
TAO::Inout_Basic_SArgument_T<S>::interceptor_param (Dynamic::Parameter & p)
@@ -59,8 +53,6 @@ TAO::Inout_Basic_SArgument_T<S>::interceptor_param (Dynamic::Parameter & p)
p.mode = CORBA::PARAM_INOUT;
}
-#endif /* TAO_HAS_INTERCEPTORS */
-
// ==============================================================
template<typename S>
@@ -70,8 +62,6 @@ TAO::Out_Basic_SArgument_T<S>::marshal (TAO_OutputCDR &cdr)
return cdr << this->x_;
}
-#if TAO_HAS_INTERCEPTORS == 1
-
template<typename S>
void
TAO::Out_Basic_SArgument_T<S>::interceptor_param (Dynamic::Parameter & p)
@@ -80,8 +70,6 @@ TAO::Out_Basic_SArgument_T<S>::interceptor_param (Dynamic::Parameter & p)
p.mode = CORBA::PARAM_OUT;
}
-#endif /* TAO_HAS_INTERCEPTORS */
-
// ============================================================
template<typename S>
@@ -91,8 +79,6 @@ TAO::Ret_Basic_SArgument_T<S>::marshal (TAO_OutputCDR & cdr)
return cdr << this->x_;
}
-#if TAO_HAS_INTERCEPTORS == 1
-
template<typename S>
void
TAO::Ret_Basic_SArgument_T<S>::interceptor_result (CORBA::Any * any)
@@ -100,6 +86,4 @@ TAO::Ret_Basic_SArgument_T<S>::interceptor_result (CORBA::Any * any)
(*any) <<= this->x_;
}
-#endif /* TAO_HAS_INTERCEPTORS */
-
#endif /* TAO_BASIC_SARGUMENT_T_C */