#include "tao/orbconf.h"
#include "tao/AnyTypeCode/TAO_AnyTypeCode_Export.h"
#include "tao/Exception.h"
Include dependency graph for ExceptionA.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | CORBA |
Typedefs | |
typedef Any * | CORBA::Any_ptr |
Functions | |
TAO_AnyTypeCode_Export void | operator<<= (CORBA::Any &, const CORBA::Exception &) |
TAO_AnyTypeCode_Export void | operator<<= (CORBA::Any &, CORBA::Exception *) |
This file defines way in which CORBA exceptions are reported.
Definition in file ExceptionA.h.
TAO_AnyTypeCode_Export void operator<<= | ( | CORBA::Any & | , | |
CORBA::Exception * | ||||
) |
Definition at line 105 of file ExceptionA.cpp.
References CORBA::Exception::_tao_any_destructor(), and CORBA::Exception::_tao_type().
00106 { 00107 TAO::Any_Dual_Impl_T<CORBA::Exception>::insert ( 00108 any, 00109 CORBA::Exception::_tao_any_destructor, 00110 exception->_tao_type (), 00111 exception 00112 ); 00113 }
TAO_AnyTypeCode_Export void operator<<= | ( | CORBA::Any & | , | |
const CORBA::Exception & | ||||
) |
Definition at line 93 of file ExceptionA.cpp.
References CORBA::Exception::_tao_any_destructor(), and CORBA::Exception::_tao_type().
00094 { 00095 TAO::Any_Dual_Impl_T<CORBA::Exception>::insert_copy ( 00096 any, 00097 CORBA::Exception::_tao_any_destructor, 00098 exception._tao_type (), 00099 exception 00100 ); 00101 }