Bug 2300

Summary: Simplify serialize/deserialize of sequences
Product: TAO Reporter: Johnny Willemsen <jwillemsen>
Component: IDL CompilerAssignee: Johnny Willemsen <jwillemsen>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P3    
Version: 1.4.10   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 1929    

Description Johnny Willemsen 2005-11-16 06:54:38 CST
sequence item
Comment 1 Johnny Willemsen 2005-11-16 06:57:23 CST
Added block, reassign at the same time. Idea is to refactor
serialize/deserialize out of the idl compiler into just some template methods,
will simplify the generated code for sequences a lot.

The code will then just be:

::CORBA::Boolean operator<< (
    TAO_OutputCDR &strm,
    const ParamMod::ParameterTester::object_seq_type &_tao_sequence
  )
{
  return TAO::details::insert_unbounded_sequence(strm, _tao_sequence);
}
::CORBA::Boolean operator>> (
    TAO_InputCDR &strm,
    ParamMod::ParameterTester::object_seq_type &_tao_sequence
  )
{
  return TAO::details::extract_unbounded_sequence(strm, _tao_sequence);
}

Comment 2 Jeff Parsons 2005-11-16 08:04:53 CST
Okay, please let me know when things are ready for these changes to be made.
Comment 3 Johnny Willemsen 2006-03-06 08:15:26 CST
will be part of the sequence changes
Comment 4 Johnny Willemsen 2006-04-19 07:24:03 CDT
Wed Apr 19 07:48:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>