/usr/include/tao/GIOPC.inl is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | // -*- C++ -*-
// $Id$
/**
* Code generated by the The ACE ORB (TAO) IDL Compiler v2.0.1
* TAO and the TAO IDL Compiler have been developed by:
* Center for Distributed Object Computing
* Washington University
* St. Louis, MO
* USA
* http://www.cs.wustl.edu/~schmidt/doc-center.html
* and
* Distributed Object Computing Laboratory
* University of California at Irvine
* Irvine, CA
* USA
* and
* Institute for Software Integrated Systems
* Vanderbilt University
* Nashville, TN
* USA
* http://www.isis.vanderbilt.edu/
*
* Information about TAO is available at:
* http://www.cs.wustl.edu/~schmidt/TAO.html
**/
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
// TAO_IDL - Generated from
// be/be_visitor_union/union_ci.cpp:42
// *************************************************************
// Inline operations for union GIOP::TargetAddress
// *************************************************************
// TAO_IDL - Generated from
// be/be_visitor_union/discriminant_ci.cpp:151
ACE_INLINE
void
GIOP::TargetAddress::_default ()
{
this->_reset ();
this->disc_ = -32768;
}
// Accessor to set the discriminant.
ACE_INLINE
void
GIOP::TargetAddress::_d ( ::CORBA::Short discval)
{
this->disc_ = discval;
}
// Accessor to get the discriminant.
ACE_INLINE
::CORBA::Short
GIOP::TargetAddress::_d (void) const
{
return this->disc_;
}
// TAO_IDL - Generated from
// be/be_visitor_union_branch/public_ci.cpp:789
/// Accessor to set the member.
ACE_INLINE
void
GIOP::TargetAddress::object_key (const CORBA::OctetSeq &val)
{
// Set the discriminant value.
this->_reset ();
this->disc_ = 0;
ACE_NEW (
this->u_.object_key_,
CORBA::OctetSeq (val)
);
}
/// Readonly get method.
ACE_INLINE
const CORBA::OctetSeq &
GIOP::TargetAddress::object_key (void) const
{
return *this->u_.object_key_;
}
/// Read/write get method.
ACE_INLINE
CORBA::OctetSeq &
GIOP::TargetAddress::object_key (void)
{
return *this->u_.object_key_;
}
// TAO_IDL - Generated from
// be/be_visitor_union_branch/public_ci.cpp:1066
/// Accessor to set the member.
ACE_INLINE
void
GIOP::TargetAddress::profile (const IOP::TaggedProfile &val)
{
// Set the discriminant value.
this->_reset ();
this->disc_ = 1;
ACE_NEW (
this->u_.profile_,
IOP::TaggedProfile (val)
);
}
// Readonly get method.
ACE_INLINE
const IOP::TaggedProfile &
GIOP::TargetAddress::profile (void) const
{
return *this->u_.profile_;
}
// Read/write get method.
ACE_INLINE
IOP::TaggedProfile &
GIOP::TargetAddress::profile (void)
{
return *this->u_.profile_;
}
// TAO_IDL - Generated from
// be/be_visitor_union_branch/public_ci.cpp:1066
/// Accessor to set the member.
ACE_INLINE
void
GIOP::TargetAddress::ior (const GIOP::IORAddressingInfo &val)
{
// Set the discriminant value.
this->_reset ();
this->disc_ = 2;
ACE_NEW (
this->u_.ior_,
GIOP::IORAddressingInfo (val)
);
}
// Readonly get method.
ACE_INLINE
const GIOP::IORAddressingInfo &
GIOP::TargetAddress::ior (void) const
{
return *this->u_.ior_;
}
// Read/write get method.
ACE_INLINE
GIOP::IORAddressingInfo &
GIOP::TargetAddress::ior (void)
{
return *this->u_.ior_;
}
TAO_END_VERSIONED_NAMESPACE_DECL
|