#include "tao/orbconf.h"#include "tao/AnyTypeCode/TAO_AnyTypeCode_Export.h"#include "tao/Exception.h"

Go to the source code of this file.
Namespaces | |
| namespace | CORBA |
FUZZ: disable check_for_include/. | |
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 & | , | |
| const CORBA::Exception & | ||||
| ) |
Definition at line 89 of file ExceptionA.cpp.
{
TAO::Any_Dual_Impl_T<CORBA::Exception>::insert_copy (
any,
CORBA::Exception::_tao_any_destructor,
exception._tao_type (),
exception);
}
| TAO_AnyTypeCode_Export void operator<<= | ( | CORBA::Any & | , | |
| CORBA::Exception * | ||||
| ) |
Definition at line 100 of file ExceptionA.cpp.
{
TAO::Any_Dual_Impl_T<CORBA::Exception>::insert (
any,
CORBA::Exception::_tao_any_destructor,
exception->_tao_type (),
exception);
}
1.7.0