Please report new issues athttps://github.com/DOCGroup
Simplify TAO_Seq_Out_T, being prepared in the sequpdate3 branch as part of the sequene changes. Storing it as public item. --- Seq_Out_T.h 21 Mar 2006 14:11:51 -0000 1.6.12.4 +++ Seq_Out_T.h 31 Mar 2006 12:55:45 -0000 @@ -26,17 +26,18 @@ * @brief Parametrized implementation of _out class for sequences. * */ -template <typename T, typename T_var> +template <typename T> class TAO_Seq_Out_T { public: typedef typename T::subscript_type T_elem; + typedef typename T::_var_type T_var; TAO_Seq_Out_T (T *&); TAO_Seq_Out_T (T_var &); - TAO_Seq_Out_T (const TAO_Seq_Out_T<T,T_var> &); + TAO_Seq_Out_T (const TAO_Seq_Out_T<T> &); - TAO_Seq_Out_T &operator= (const TAO_Seq_Out_T<T,T_var> &); + TAO_Seq_Out_T &operator= (const TAO_Seq_Out_T<T> &); TAO_Seq_Out_T &operator= (T *); operator T *& ();
added blocks, taking over
accept
This item is included in the overhaul of code to be undertaken after we drop support for MSVC 6. I've added the dependency.
fixed