summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-11 19:38:08 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-05-11 19:38:08 +0000
commite91106247c4c6b30c593fb8f85000cf667c3060c (patch)
treea3000cf9562d066520124cf9d5169a82dd56d676
parent694f0f04b20c8b4b45433e21848578551c3e7f2b (diff)
downloadATCD-e91106247c4c6b30c593fb8f85000cf667c3060c.tar.gz
*** empty log message ***
-rw-r--r--TAO/tao/WrongTransactionC.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/TAO/tao/WrongTransactionC.cpp b/TAO/tao/WrongTransactionC.cpp
index d532256e7a9..6458a5bb877 100644
--- a/TAO/tao/WrongTransactionC.cpp
+++ b/TAO/tao/WrongTransactionC.cpp
@@ -13,25 +13,25 @@
#include "WrongTransactionC.h"
// default constructor
-CORBA::WrongTransaction::WrongTransaction (void)
+CORBA_WrongTransaction::CORBA_WrongTransaction (void)
: CORBA_UserException (CORBA::_tc_WrongTransaction)
{
}
// destructor - all members are of self managing types
-CORBA::WrongTransaction::~WrongTransaction (void)
+CORBA_WrongTransaction::~CORBA_WrongTransaction (void)
{
}
// copy constructor
-CORBA::WrongTransaction::WrongTransaction (const CORBA::WrongTransaction &_tao_excp)
+CORBA_WrongTransaction::CORBA_WrongTransaction (const CORBA_WrongTransaction &_tao_excp)
: CORBA_UserException (_tao_excp._type ())
{
}
// assignment operator
-CORBA::WrongTransaction&
-CORBA::WrongTransaction::operator= (const CORBA::WrongTransaction &_tao_excp)
+CORBA_WrongTransaction&
+CORBA_WrongTransaction::operator= (const CORBA_WrongTransaction &_tao_excp)
{
this->CORBA_UserException::operator= (_tao_excp);
@@ -39,25 +39,25 @@ CORBA::WrongTransaction::operator= (const CORBA::WrongTransaction &_tao_excp)
}
// narrow
-CORBA::WrongTransaction_ptr
-CORBA::WrongTransaction::_narrow (CORBA::Exception *exc)
+CORBA_WrongTransaction_ptr
+CORBA_WrongTransaction::_narrow (CORBA::Exception *exc)
{
if (!ACE_OS::strcmp ("IDL:omg.org/CORBA/WrongTransaction:1.0", exc->_id ())) // same type
- return ACE_dynamic_cast (CORBA::WrongTransaction_ptr, exc);
+ return ACE_dynamic_cast (CORBA_WrongTransaction_ptr, exc);
else
return 0;
}
-void CORBA::WrongTransaction::_raise ()
+void CORBA_WrongTransaction::_raise ()
{
TAO_RAISE(*this);
}
// TAO extension - the _alloc method
-CORBA::Exception *CORBA::WrongTransaction::_alloc (void)
+CORBA::Exception *CORBA_WrongTransaction::_alloc (void)
{
- return new CORBA::WrongTransaction;
+ return new CORBA_WrongTransaction;
}
#endif /* ! defined TAO_HAS_MINIMUM_CORBA */