diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-02-20 17:20:52 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2003-02-20 17:20:52 +0000 |
commit | b1e6ab001abff21c7eece6d72a09ea869222e1ac (patch) | |
tree | 05e044b047e36dd6705dd881c6e5372cc7307152 /TAO/tao/Exception.i | |
parent | 4e22cab1a97cdd1f58242de8fb931389c050e549 (diff) | |
download | ATCD-b1e6ab001abff21c7eece6d72a09ea869222e1ac.tar.gz |
AbstractBase.*
Diffstat (limited to 'TAO/tao/Exception.i')
-rw-r--r-- | TAO/tao/Exception.i | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/TAO/tao/Exception.i b/TAO/tao/Exception.i index 73084d4fb08..56bf7a1e6a9 100644 --- a/TAO/tao/Exception.i +++ b/TAO/tao/Exception.i @@ -1,38 +1,39 @@ -// This may look like C, but it's really -*- C++ -*- +// -*- C++ -*- +// // $Id$ -ACE_INLINE CORBA_Exception* -CORBA_Exception::_downcast (CORBA_Exception* x) +ACE_INLINE CORBA::Exception* +CORBA::Exception::_downcast (CORBA::Exception* x) { return x; } ACE_INLINE -CORBA_UserException::CORBA_UserException (const CORBA_UserException &src) - : CORBA_Exception (src) +CORBA::UserException::UserException (const CORBA::UserException &src) + : CORBA::Exception (src) { } ACE_INLINE CORBA::ULong -CORBA_SystemException::minor (void) const +CORBA::SystemException::minor (void) const { return this->minor_; } ACE_INLINE void -CORBA_SystemException::minor (CORBA::ULong m) +CORBA::SystemException::minor (CORBA::ULong m) { this->minor_ = m; } ACE_INLINE CORBA::CompletionStatus -CORBA_SystemException::completed (void) const +CORBA::SystemException::completed (void) const { return this->completed_; } ACE_INLINE void -CORBA_SystemException::completed (CORBA::CompletionStatus c) +CORBA::SystemException::completed (CORBA::CompletionStatus c) { this->completed_ = c; } |