Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / UserException.inl
blob0596a2fcd0eb2f4c19a4e45f7b7584cb7f90ab49
1 // -*- C++ -*-
2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
4 ACE_INLINE
5 CORBA::UserException::UserException ()
9 ACE_INLINE
10 CORBA::UserException::UserException (char const * repository_id,
11                                      char const * local_name)
12   : CORBA::Exception (repository_id,
13                       local_name)
17 ACE_INLINE
18 CORBA::UserException::UserException (CORBA::UserException const & rhs)
19   : CORBA::Exception (rhs)
23 ACE_INLINE CORBA::UserException *
24 CORBA::UserException::_downcast (CORBA::Exception * exception)
26   return dynamic_cast<CORBA::UserException *> (exception);
29 ACE_INLINE const CORBA::UserException *
30 CORBA::UserException::_downcast (CORBA::Exception const * exception)
32   return dynamic_cast<const CORBA::UserException *> (exception);
35 TAO_END_VERSIONED_NAMESPACE_DECL