Bug 2492 - Simplify TAO_Seq_Out_T
Summary: Simplify TAO_Seq_Out_T
Status: RESOLVED FIXED
Alias: None
Product: TAO
Classification: Unclassified
Component: IDL Compiler (show other bugs)
Version: 1.5
Hardware: All All
: P3 normal
Assignee: Johnny Willemsen
URL:
Depends on: 2462
Blocks: 1929
  Show dependency tree
 
Reported: 2006-03-31 07:30 CST by Johnny Willemsen
Modified: 2006-04-19 07:18 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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