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
|
.TH ACE_Name_Binding 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
ACE_Name_Binding \- Maintains a mapping from name to value and type.
.SH SYNOPSIS
.br
.PP
\fC#include <Name_Space.h>\fR
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "\fBACE_Name_Binding\fR (const \fBACE_WString\fR &n, const \fBACE_WString\fR &v, const char *t)"
.br
.RI "\fIMain constructor that initializes all the fields.\fR"
.ti -1c
.RI "\fBACE_Name_Binding\fR (void)"
.br
.RI "\fIDefault constructor.\fR"
.ti -1c
.RI "\fBACE_Name_Binding\fR (const ACE_Name_Binding &)"
.br
.RI "\fICopy constructor.\fR"
.ti -1c
.RI "void \fBoperator=\fR (const ACE_Name_Binding &)"
.br
.RI "\fIAssignment operator.\fR"
.ti -1c
.RI "\fB~ACE_Name_Binding\fR (void)"
.br
.RI "\fIDestructor.\fR"
.ti -1c
.RI "int \fBoperator==\fR (const ACE_Name_Binding &s) const"
.br
.RI "\fITest for equality.\fR"
.in -1c
.SS Public Attributes
.in +1c
.ti -1c
.RI "\fBACE_WString\fR \fBname_\fR"
.br
.RI "\fIName of the binding.\fR"
.ti -1c
.RI "\fBACE_WString\fR \fBvalue_\fR"
.br
.RI "\fIValue of the binding.\fR"
.ti -1c
.RI "char* \fBtype_\fR"
.br
.RI "\fIType of the binding.\fR"
.in -1c
.SH DETAILED DESCRIPTION
.PP
Maintains a mapping from name to value and type.
.PP
.SH CONSTRUCTOR & DESTRUCTOR DOCUMENTATION
.PP
.SS ACE_Name_Binding::ACE_Name_Binding (const \fBACE_WString\fR & n, const \fBACE_WString\fR & v, const char * t)
.PP
Main constructor that initializes all the fields.
.PP
.SS ACE_Name_Binding::ACE_Name_Binding (void)
.PP
Default constructor.
.PP
.SS ACE_Name_Binding::ACE_Name_Binding (const ACE_Name_Binding &)
.PP
Copy constructor.
.PP
.SS ACE_Name_Binding::~ACE_Name_Binding (void)
.PP
Destructor.
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.PP
.SS void ACE_Name_Binding::operator= (const ACE_Name_Binding &)
.PP
Assignment operator.
.PP
.SS int ACE_Name_Binding::operator== (const ACE_Name_Binding & s) const
.PP
Test for equality.
.PP
.SH MEMBER DATA DOCUMENTATION
.PP
.SS \fBACE_WString\fR ACE_Name_Binding::name_
.PP
Name of the binding.
.PP
.SS char * ACE_Name_Binding::type_
.PP
Type of the binding.
.PP
.SS \fBACE_WString\fR ACE_Name_Binding::value_
.PP
Value of the binding.
.PP
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|