summaryrefslogtreecommitdiff
path: root/TAO/tao/WrongTransactionC.cpp
blob: 7104b6dcef8e9eb6bcd073a4ab33e877782b179f (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* -*- C++ -*- */
// $Id$

// ******  Code generated by the The ACE ORB (TAO) IDL Compiler *******
// TAO and the TAO IDL Compiler have been developed by the Center for
// Distributed Object Computing at Washington University, St. Louis.
//
// Information about TAO is available at:
//                 http://www.cs.wustl.edu/~schmidt/TAO.html

#include "tao/WrongTransactionC.h"
#include "tao/Environment.h"
#include "tao/CDR.h"

#if (TAO_HAS_MINIMUM_CORBA == 0)

// default constructor
CORBA_WrongTransaction::CORBA_WrongTransaction (void)
  : CORBA_UserException ("IDL:omg.org/CORBA/WrongTransaction:1.0")
{
}

// destructor - all members are of self managing types
CORBA_WrongTransaction::~CORBA_WrongTransaction (void)
{
}

// copy constructor
CORBA_WrongTransaction::CORBA_WrongTransaction (const CORBA_WrongTransaction &_tao_excp)
  : CORBA_UserException (_tao_excp._id ())
{
}

// assignment operator
CORBA_WrongTransaction&
CORBA_WrongTransaction::operator= (const CORBA_WrongTransaction &_tao_excp)
{

  this->CORBA_UserException::operator= (_tao_excp);
  return *this;
}

// narrow
CORBA_WrongTransaction_ptr
CORBA_WrongTransaction::_downcast (CORBA::Exception *exc)
{
  if (!ACE_OS::strcmp ("IDL:omg.org/CORBA/WrongTransaction:1.0", exc->_id ())) // same type
    return ACE_dynamic_cast (CORBA_WrongTransaction_ptr, exc);
  else
    return 0;
}


void CORBA_WrongTransaction::_raise (void)
{
  TAO_RAISE(*this);
}

void CORBA_WrongTransaction::_tao_encode (TAO_OutputCDR &cdr
                                          ACE_ENV_ARG_DECL) const
{
  if (cdr << *this)
    return;
  ACE_THROW (CORBA::MARSHAL ());
}

void CORBA_WrongTransaction::_tao_decode (TAO_InputCDR &cdr
                                          ACE_ENV_ARG_DECL)
{
  if (cdr >> *this)
    return;
  ACE_THROW (CORBA::MARSHAL ());
}

CORBA::Exception *CORBA_WrongTransaction::_alloc (void)
{
  CORBA::Exception *retval = 0;

  ACE_NEW_RETURN (retval,
                  CORBA_WrongTransaction,
                  0);

  return retval;
}

CORBA::Boolean
operator<< (TAO_OutputCDR &cdr, const CORBA_WrongTransaction &wt)
{
  if (cdr << wt._id ())
    return 1;
  return 0;
}

CORBA::Boolean
operator>> (TAO_InputCDR &, CORBA_WrongTransaction &)
{
  return 1;
}

#endif /* TAO_HAS_MINIMUM_CORBA */