summaryrefslogtreecommitdiff
path: root/TAO/tao/LongDoubleSeqC.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 09:10:19 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 09:10:19 +0000
commitf9606f4f257e642e04f8c84315b0c8f323fe65e6 (patch)
treea681f895cf5a9b8a4f7ab6603ee4fd3a55ca0305 /TAO/tao/LongDoubleSeqC.cpp
parent10fc1a52ad4bc0d1d3d6716d18f77d04022bd2a8 (diff)
downloadATCD-f9606f4f257e642e04f8c84315b0c8f323fe65e6.tar.gz
ChangeLogTag: Wed Apr 19 07:44:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/LongDoubleSeqC.cpp')
-rw-r--r--TAO/tao/LongDoubleSeqC.cpp46
1 files changed, 6 insertions, 40 deletions
diff --git a/TAO/tao/LongDoubleSeqC.cpp b/TAO/tao/LongDoubleSeqC.cpp
index 517b32ce0b5..44d7546418e 100644
--- a/TAO/tao/LongDoubleSeqC.cpp
+++ b/TAO/tao/LongDoubleSeqC.cpp
@@ -47,7 +47,7 @@ namespace TAO
}
-// TAO_IDL - Generated from
+// TAO_IDL - Generated from
// be\be_visitor_sequence/sequence_cs.cpp:65
#if !defined (_CORBA_LONGDOUBLESEQ_CS_)
@@ -59,7 +59,7 @@ CORBA::LongDoubleSeq::LongDoubleSeq (void)
CORBA::LongDoubleSeq::LongDoubleSeq (
CORBA::ULong max
)
- : TAO_Unbounded_Sequence<
+ : TAO::unbounded_value_sequence<
CORBA::LongDouble
>
(max)
@@ -71,7 +71,7 @@ CORBA::LongDoubleSeq::LongDoubleSeq (
CORBA::LongDouble * buffer,
CORBA::Boolean release
)
- : TAO_Unbounded_Sequence<
+ : TAO::unbounded_value_sequence<
CORBA::LongDouble
>
(max, length, buffer, release)
@@ -80,7 +80,7 @@ CORBA::LongDoubleSeq::LongDoubleSeq (
CORBA::LongDoubleSeq::LongDoubleSeq (
const LongDoubleSeq &seq
)
- : TAO_Unbounded_Sequence<
+ : TAO::unbounded_value_sequence<
CORBA::LongDouble
>
(seq)
@@ -111,15 +111,7 @@ CORBA::Boolean operator<< (
const CORBA::LongDoubleSeq &_tao_sequence
)
{
- const CORBA::ULong _tao_seq_len = _tao_sequence.length ();
-
- if (strm << _tao_seq_len)
- {
- // Encode all elements.
- return strm.write_longdouble_array (_tao_sequence.get_buffer (), _tao_sequence.length ());
- }
-
- return false;
+ return TAO::marshal_sequence(strm, _tao_sequence);
}
CORBA::Boolean operator>> (
@@ -127,33 +119,7 @@ CORBA::Boolean operator>> (
CORBA::LongDoubleSeq &_tao_sequence
)
{
- CORBA::ULong _tao_seq_len;
-
- if (strm >> _tao_seq_len)
- {
- // Add a check to the length of the sequence
- // to make sure it does not exceed the length
- // of the stream. (See bug 58.)
- if (_tao_seq_len > strm.length ())
- {
- return false;
- }
-
- // Set the length of the sequence.
- _tao_sequence.length (_tao_seq_len);
-
- // If length is 0 we return true.
- if (0 >= _tao_seq_len)
- {
- return true;
- }
-
- // Retrieve all the elements.
- return strm.read_longdouble_array (_tao_sequence.get_buffer (), _tao_sequence.length ());
-
- }
-
- return false;
+ return TAO::demarshal_sequence(strm, _tao_sequence);
}
#endif /* _TAO_CDR_OP_CORBA_LongDoubleSeq_CPP_ */