blob: 16ac28782278ac2170459c758173f65a28bff321 (
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
36
37
38
39
|
// This may look like C, but it's really -*- C++ -*-
// $Id$
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)
{
}
ACE_INLINE CORBA::ULong
CORBA_SystemException::minor (void) const
{
return this->minor_;
}
ACE_INLINE void
CORBA_SystemException::minor (CORBA::ULong m)
{
this->minor_ = m;
}
ACE_INLINE CORBA::CompletionStatus
CORBA_SystemException::completed (void) const
{
return this->completed_;
}
ACE_INLINE void
CORBA_SystemException::completed (CORBA::CompletionStatus c)
{
this->completed_ = c;
}
|