Summary: | Simplify serialize/deserialize of sequences | ||
---|---|---|---|
Product: | TAO | Reporter: | Johnny Willemsen <jwillemsen> |
Component: | IDL Compiler | Assignee: | 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
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); } Okay, please let me know when things are ready for these changes to be made. will be part of the sequence changes Wed Apr 19 07:48:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl> |