diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2000-10-10 23:56:14 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2000-10-10 23:56:14 +0000 |
commit | 28a124c3ccc72623a5d68c370f174d4b225a222c (patch) | |
tree | 5e898ce479d260a2c547a1952f25e44e920d3709 /TAO/tao/Exception.h | |
parent | 20e10d7902965f84eef61d407825f36398ca1d82 (diff) | |
download | ATCD-28a124c3ccc72623a5d68c370f174d4b225a222c.tar.gz |
ChangeLogTag:Tue Oct 10 08:50:07 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'TAO/tao/Exception.h')
-rw-r--r-- | TAO/tao/Exception.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/TAO/tao/Exception.h b/TAO/tao/Exception.h index ae69663beeb..6e4ff709879 100644 --- a/TAO/tao/Exception.h +++ b/TAO/tao/Exception.h @@ -1,5 +1,4 @@ // This may look like C, but it's really -*- C++ -*- -// // $Id$ // ============================================================================ @@ -28,6 +27,7 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ +#include "ace/SString.h" // This is used in the implementation of the _raise methods #if defined (TAO_HAS_EXCEPTIONS) @@ -36,7 +36,6 @@ #define TAO_RAISE(EXCEPTION) #endif /* TAO_HAS_EXCEPTIONS */ - class CORBA_Any; class TAO_OutputCDR; class TAO_InputCDR; @@ -88,7 +87,7 @@ public: // Print the exception <ex> to output determined by <f>. This // function is not CORBA compliant. - const char *_info (void) const; + ACE_CString _info (void) const; // Returns a string containing information about the exception. This // function is not CORBA compliant. @@ -210,7 +209,7 @@ public: // Print the system exception <ex> to output determined by f. This // function is not CORBA compliant. - const char *_info (void) const; + ACE_CString _info (void) const; // Returns a string containing information about the exception. This // function is not CORBA compliant. |