#include "ace/config-all.h"#include "tao/TAO_Export.h"#include "tao/ORB.h"#include "tao/Environment.h"#include "tao/Sequence_T.h"#include "tao/String_Manager_T.h"#include "tao/Seq_Var_T.h"#include "tao/Seq_Out_T.h"#include "tao/VarOut_T.h"Include dependency graph for IIOPC.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Namespaces | |
| namespace | IIOP |
| namespace | TAO |
Classes | |
| struct | ListenPoint |
| struct | BiDirIIOPServiceContext |
Defines | |
| #define | TAO_EXPORT_MACRO TAO_Export |
| #define | _IIOP_LISTENPOINTLIST_CH_ |
Functions | |
| TAO_Export CORBA::Boolean | operator<< (TAO_OutputCDR &, const IIOP::ListenPoint &) |
| TAO_Export CORBA::Boolean | operator>> (TAO_InputCDR &, IIOP::ListenPoint &) |
| TAO_Export CORBA::Boolean | operator<< (TAO_OutputCDR &, const IIOP::ListenPointList &) |
| TAO_Export CORBA::Boolean | operator>> (TAO_InputCDR &, IIOP::ListenPointList &) |
| TAO_Export CORBA::Boolean | operator<< (TAO_OutputCDR &, const IIOP::BiDirIIOPServiceContext &) |
| TAO_Export CORBA::Boolean | operator>> (TAO_InputCDR &, IIOP::BiDirIIOPServiceContext &) |
|
|
|
|
|
|
|
||||||||||||
|
Definition at line 175 of file IIOPC.cpp. References IIOP::BiDirIIOPServiceContext::listen_points.
00179 {
00180 return
00181 (strm << _tao_aggregate.listen_points);
00182 }
|
|
||||||||||||
|
Definition at line 154 of file IIOPC.cpp. References TAO::marshal_sequence().
00158 {
00159 return TAO::marshal_sequence(strm, _tao_sequence);
00160 }
|
|
||||||||||||
|
Definition at line 128 of file IIOPC.cpp. References IIOP::ListenPoint::host, and IIOP::ListenPoint::port.
00132 {
00133 return
00134 (strm << _tao_aggregate.host.in ()) &&
00135 (strm << _tao_aggregate.port);
00136 }
|
|
||||||||||||
|
Definition at line 184 of file IIOPC.cpp. References IIOP::BiDirIIOPServiceContext::listen_points.
00188 {
00189 return
00190 (strm >> _tao_aggregate.listen_points);
00191 }
|
|
||||||||||||
|
Definition at line 162 of file IIOPC.cpp. References TAO::demarshal_sequence().
00166 {
00167 return TAO::demarshal_sequence(strm, _tao_sequence);
00168 }
|
|
||||||||||||
|
Definition at line 138 of file IIOPC.cpp. References IIOP::ListenPoint::host, and IIOP::ListenPoint::port.
00142 {
00143 return
00144 (strm >> _tao_aggregate.host.out ()) &&
00145 (strm >> _tao_aggregate.port);
00146 }
|
1.3.6