Bug 2492

Summary: Simplify TAO_Seq_Out_T
Product: TAO Reporter: Johnny Willemsen <jwillemsen>
Component: IDL CompilerAssignee: Johnny Willemsen <jwillemsen>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P3    
Version: 1.5   
Hardware: All   
OS: All   
Bug Depends on: 2462    
Bug Blocks: 1929    

Description Johnny Willemsen 2006-03-31 07:30:31 CST
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 *& ();
Comment 1 Johnny Willemsen 2006-03-31 07:30:50 CST
added blocks, taking over
Comment 2 Johnny Willemsen 2006-03-31 07:31:10 CST
accept
Comment 3 Jeff Parsons 2006-03-31 07:48:54 CST
This item is included in the overhaul of code to be undertaken after we drop 
support for MSVC 6. I've added the dependency.
Comment 4 Johnny Willemsen 2006-04-19 07:18:20 CDT
fixed