summaryrefslogtreecommitdiff
path: root/TAO/tao/UserException.inl
blob: 3bba257dd04dd4bd85b04f67f8701a38b2759cc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// -*- C++ -*-
TAO_BEGIN_VERSIONED_NAMESPACE_DECL

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)
{
}

ACE_INLINE CORBA::UserException *
CORBA::UserException::_downcast (CORBA::Exception * exception)
{
  return dynamic_cast<CORBA::UserException *> (exception);
}

ACE_INLINE const CORBA::UserException *
CORBA::UserException::_downcast (CORBA::Exception const * exception)
{
  return dynamic_cast<const CORBA::UserException *> (exception);
}

TAO_END_VERSIONED_NAMESPACE_DECL