#include "tao/AnyTypeCode/ExceptionA.h"
#include "tao/AnyTypeCode/Any_Dual_Impl_T.h"
#include "tao/SystemException.h"
#include "tao/ORB_Constants.h"
#include "tao/CORBA_String.h"
#include "tao/CDR.h"
#include "tao/debug.h"
#include "ace/Malloc.h"
#include "ace/SString.h"
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_stdio.h"
Include dependency graph for ExceptionA.cpp:
Go to the source code of this file.
Namespaces | |
namespace | TAO |
Functions | |
void | operator<<= (CORBA::Any &any, const CORBA::Exception &exception) |
void | operator<<= (CORBA::Any &any, CORBA::Exception *exception) |
|
Definition at line 105 of file ExceptionA.cpp.
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 } |
|
Definition at line 93 of file ExceptionA.cpp.
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 } |