summaryrefslogtreecommitdiff
path: root/TAO/tao/UserException.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/UserException.inl')
-rw-r--r--TAO/tao/UserException.inl19
1 files changed, 13 insertions, 6 deletions
diff --git a/TAO/tao/UserException.inl b/TAO/tao/UserException.inl
index a8ca0e78f23..ba01c46e9fd 100644
--- a/TAO/tao/UserException.inl
+++ b/TAO/tao/UserException.inl
@@ -3,6 +3,19 @@
// $Id$
ACE_INLINE
+CORBA::UserException::UserException (void)
+{
+}
+
+ACE_INLINE
+CORBA::UserException::UserException (char const * repository_id,
+ char const * local_name)
+ : CORBA::Exception (repository_id,
+ local_name)
+{
+}
+
+ACE_INLINE
CORBA::UserException::UserException (CORBA::UserException const & rhs)
: CORBA::Exception (rhs)
{
@@ -19,9 +32,3 @@ CORBA::UserException::_downcast (CORBA::Exception const * exception)
{
return dynamic_cast<const CORBA::UserException *> (exception);
}
-
-ACE_INLINE CORBA::TypeCode_ptr
-CORBA::UserException::_tao_type (void) const
-{
- return 0;
-}