#include "tao/TAOC.h"#include "tao/CDR.h"#include "ace/OS_NS_string.h"Include dependency graph for TAOC.cpp:

Go to the source code of this file.
Namespaces | |
| namespace | TAO |
Functions | |
| CORBA::Boolean | operator<< (TAO_OutputCDR &strm, const TAO::BufferingConstraint &_tao_aggregate) |
| CORBA::Boolean | operator>> (TAO_InputCDR &strm, TAO::BufferingConstraint &_tao_aggregate) |
|
||||||||||||
|
Definition at line 188 of file TAOC.cpp.
00192 {
00193 return
00194 (strm << _tao_aggregate.mode) &&
00195 (strm << _tao_aggregate.timeout) &&
00196 (strm << _tao_aggregate.message_count) &&
00197 (strm << _tao_aggregate.message_bytes);
00198 }
|
|
||||||||||||
|
Definition at line 200 of file TAOC.cpp.
00204 {
00205 return
00206 (strm >> _tao_aggregate.mode) &&
00207 (strm >> _tao_aggregate.timeout) &&
00208 (strm >> _tao_aggregate.message_count) &&
00209 (strm >> _tao_aggregate.message_bytes);
00210 }
|
1.3.6