summaryrefslogtreecommitdiff
path: root/TAO/tao/Var_Array_Argument_T.cpp
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-08-06 18:27:58 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-08-06 18:27:58 +0000
commit4e45fa35477edbb0ed57cfa9f2b09fbd22715777 (patch)
tree043f9113acd1ebf8f6d80ff63af754e0da420cb7 /TAO/tao/Var_Array_Argument_T.cpp
parent22f729de3b6de9aba4cc3e79c628600e01e5fb8c (diff)
downloadATCD-4e45fa35477edbb0ed57cfa9f2b09fbd22715777.tar.gz
ChangeLogTag: Fri Aug 6 12:51:33 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Var_Array_Argument_T.cpp')
-rw-r--r--TAO/tao/Var_Array_Argument_T.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/TAO/tao/Var_Array_Argument_T.cpp b/TAO/tao/Var_Array_Argument_T.cpp
index c7f04620b0a..5f358938220 100644
--- a/TAO/tao/Var_Array_Argument_T.cpp
+++ b/TAO/tao/Var_Array_Argument_T.cpp
@@ -23,6 +23,8 @@ TAO::In_Var_Array_Argument_T<S,S_slice,S_forany>::marshal (
return cdr << this->x_;
}
+#if TAO_HAS_INTERCEPTORS == 1
+
template<typename S, typename S_slice, typename S_forany>
void
TAO::In_Var_Array_Argument_T<S,S_slice,S_forany>::interceptor_param (
@@ -33,6 +35,8 @@ TAO::In_Var_Array_Argument_T<S,S_slice,S_forany>::interceptor_param (
p.mode = CORBA::PARAM_IN;
}
+#endif /* TAO_HAS_INTERCEPTORS */
+
// ===========================================================
template<typename S, typename S_slice, typename S_forany>
@@ -53,6 +57,8 @@ TAO::Inout_Var_Array_Argument_T<S,S_slice,S_forany>::demarshal (
return cdr >> this->x_;
}
+#if TAO_HAS_INTERCEPTORS == 1
+
template<typename S, typename S_slice, typename S_forany>
void
TAO::Inout_Var_Array_Argument_T<S,S_slice,S_forany>::interceptor_param (
@@ -63,6 +69,8 @@ TAO::Inout_Var_Array_Argument_T<S,S_slice,S_forany>::interceptor_param (
p.mode = CORBA::PARAM_INOUT;
}
+#endif /* TAO_HAS_INTERCEPTORS */
+
// ==============================================================
template<typename S,
@@ -84,6 +92,8 @@ TAO::Out_Var_Array_Argument_T<S,S_slice,S_var,S_out,S_forany,S_tag>::demarshal (
return cdr >> tmp;
}
+#if TAO_HAS_INTERCEPTORS == 1
+
template<typename S,
typename S_slice,
typename S_var,
@@ -98,6 +108,8 @@ interceptor_param (Dynamic::Parameter & p)
p.mode = CORBA::PARAM_OUT;
}
+#endif /* TAO_HAS_INTERCEPTORS */
+
// ============================================================
template<typename S,
@@ -120,6 +132,8 @@ TAO::Ret_Var_Array_Argument_T<S,S_slice,S_var,S_forany,S_tag>::demarshal (
return cdr >> tmp;
}
+#if TAO_HAS_INTERCEPTORS == 1
+
template<typename S,
typename S_slice,
typename S_var,
@@ -132,4 +146,6 @@ interceptor_result (CORBA::Any * any)
(*any) <<= S_forany (this->x_.ptr ());
}
+#endif /* TAO_HAS_INTERCEPTORS */
+
#endif /* TAO_VAR_ARRAY_ARGUMENT_T_C */