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
|
.TH ACE_CORBA_Ref 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
ACE_CORBA_Ref \- A wrapper for helping with Orbix object references.
.SH SYNOPSIS
.br
.PP
\fC#include <CORBA_Ref.h>\fR
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "\fBACE_CORBA_Ref\fR (void)"
.br
.RI "\fINull construction.\fR"
.ti -1c
.RI "\fBACE_CORBA_Ref\fR (CORBA_REF *ref)"
.br
.RI "\fIContruction with an orbix ref. performs a <CORBA_REF::_duplicate>.\fR"
.ti -1c
.RI "CORBA_REF* \fBoperator=\fR (CORBA_REF *ref)"
.br
.RI "\fIAssignment performs a <CORBA_REF::_duplicate>.\fR"
.ti -1c
.RI "\fBoperator CORBA_REF *\fR (void) const"
.br
.RI "\fIType operator.\fR"
.ti -1c
.RI "CORBA_REF* \fBoperator->\fR (void) const"
.br
.RI "\fISmart pointer to forward all CORBA_REF calls to the underlying Orbix reference.\fR"
.ti -1c
.RI "int \fBoperator==\fR (CORBA_REF *) const"
.br
.RI "\fIPointer comparison.\fR"
.ti -1c
.RI "int \fBoperator!=\fR (CORBA_REF *) const"
.br
.RI "\fIPointer comparison.\fR"
.ti -1c
.RI "\fB~ACE_CORBA_Ref\fR (void)"
.br
.RI "\fIDestruction: calls <CORBA_REF::_release>.\fR"
.in -1c
.SS Private Attributes
.in +1c
.ti -1c
.RI "CORBA_REF* \fBref_\fR"
.br
.in -1c
.SH DETAILED DESCRIPTION
.PP
.SS template<class CORBA_REF> template class ACE_CORBA_Ref
A wrapper for helping with Orbix object references.
.PP
.PP
is parameterized by the type of orbix object reference to be used. The construtor, operator=, and the destructor of perform implicit duplicates and releases in order to help make the use of Orbix object references transparent.
.PP
.SH CONSTRUCTOR & DESTRUCTOR DOCUMENTATION
.PP
.SS template<classCORBA_REF> ACE_CORBA_Ref<CORBA_REF>::ACE_CORBA_Ref<CORBA_REF> (void)
.PP
Null construction.
.PP
.SS template<classCORBA_REF> ACE_CORBA_Ref<CORBA_REF>::ACE_CORBA_Ref<CORBA_REF> (CORBA_REF * ref)
.PP
Contruction with an orbix ref. performs a <CORBA_REF::_duplicate>.
.PP
.SS template<classCORBA_REF> ACE_CORBA_Ref<CORBA_REF>::~ACE_CORBA_Ref<CORBA_REF> (void)
.PP
Destruction: calls <CORBA_REF::_release>.
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.PP
.SS template<classCORBA_REF> ACE_CORBA_Ref<CORBA_REF>::operator CORBA_REF * (void) const
.PP
Type operator.
.PP
.SS template<classCORBA_REF> int ACE_CORBA_Ref<CORBA_REF>::operator!= (CORBA_REF *) const
.PP
Pointer comparison.
.PP
.SS template<classCORBA_REF> CORBA_REF * ACE_CORBA_Ref<CORBA_REF>::operator-> (void) const
.PP
Smart pointer to forward all CORBA_REF calls to the underlying Orbix reference.
.PP
.SS template<classCORBA_REF> CORBA_REF * ACE_CORBA_Ref<CORBA_REF>::operator= (CORBA_REF * ref)
.PP
Assignment performs a <CORBA_REF::_duplicate>.
.PP
.SS template<classCORBA_REF> int ACE_CORBA_Ref<CORBA_REF>::operator== (CORBA_REF *) const
.PP
Pointer comparison.
.PP
.SH MEMBER DATA DOCUMENTATION
.PP
.SS template<classCORBA_REF> CORBA_REF * ACE_CORBA_Ref<CORBA_REF>::ref_\fC [private]\fR
.PP
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|