Public Member Functions | Private Member Functions | Private Attributes

CORBA::Any_out Class Reference

CORBA::Any_out. More...

#include <Any.h>

Collaboration diagram for CORBA::Any_out:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 Any_out (Any *&)
 Any_out (Any_var &)
 Any_out (const Any_out &)
Any_outoperator= (const Any_out &s)
 Assignment from a Any_out.
Any_outoperator= (Any *)
 Assignment from a Any.
 operator Any *& ()
 Cast.
Any *& ptr (void)
 Return underlying instance.
Anyoperator-> (void)

Private Member Functions

void operator= (const Any_var &)
 Assignment from _var disallowed.

Private Attributes

Any *& ptr_
 Instance.

Detailed Description

CORBA::Any_out.

The _out class for CORBA::Any. This is used to help in managing the out parameters.

Definition at line 240 of file Any.h.


Constructor & Destructor Documentation

CORBA::Any_out::Any_out ( CORBA::Any *&  s  ) 

Definition at line 322 of file Any.inl.

  : ptr_ (s)
{
  this->ptr_ = 0;
}

CORBA::Any_out::Any_out ( CORBA::Any_var s  ) 

Definition at line 329 of file Any.inl.

  : ptr_ (s.out ())
{
}

CORBA::Any_out::Any_out ( const Any_out s  ) 

Definition at line 335 of file Any.inl.

  : ptr_ (s.ptr_)
{
}


Member Function Documentation

CORBA::Any_out::operator Any *& (  ) 

Cast.

CORBA::Any * CORBA::Any_out::operator-> ( void   ) 

Definition at line 367 of file Any.inl.

{
  return this->ptr_;
}

CORBA::Any_out & CORBA::Any_out::operator= ( CORBA::Any s  ) 

Assignment from a Any.

Definition at line 348 of file Any.inl.

{
  this->ptr_ = s;
  return *this;
}

void CORBA::Any_out::operator= ( const Any_var  )  [private]

Assignment from _var disallowed.

CORBA::Any_out & CORBA::Any_out::operator= ( const Any_out s  ) 

Assignment from a Any_out.

Definition at line 341 of file Any.inl.

{
  this->ptr_ = s.ptr_;
  return *this;
}

CORBA::Any *& CORBA::Any_out::ptr ( void   ) 

Return underlying instance.

Definition at line 361 of file Any.inl.

{
  return this->ptr_;
}


Member Data Documentation

Instance.

Definition at line 267 of file Any.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines