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
|
.TH ACE_Dumpable 3 "1 Dec 2001" "ACE" \" -*- nroff -*-
.ad l
.nh
.SH NAME
ACE_Dumpable \- Base class that defines a uniform interface for all object dumping.
.SH SYNOPSIS
.br
.PP
\fC#include <Dump.h>\fR
.PP
Inherited by \fBACE_Dumpable_Adapter\fR.
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "\fBACE_Dumpable\fR (const void *)"
.br
.RI "\fIConstructor.\fR"
.ti -1c
.RI "virtual void \fBdump\fR (void) const = 0"
.br
.RI "\fIThis pure virtual method must be filled in by a subclass.\fR"
.in -1c
.SS Protected Methods
.in +1c
.ti -1c
.RI "virtual \fB~ACE_Dumpable\fR (void)"
.br
.in -1c
.SS Private Attributes
.in +1c
.ti -1c
.RI "const void* \fBthis_\fR"
.br
.RI "\fIPointer to the object that is being stored.\fR"
.in -1c
.SS Friends
.in +1c
.ti -1c
.RI "class \fBACE_ODB\fR"
.br
.ti -1c
.RI "class \fBACE_Dumpable_Ptr\fR"
.br
.in -1c
.SH DETAILED DESCRIPTION
.PP
Base class that defines a uniform interface for all object dumping.
.PP
.SH CONSTRUCTOR & DESTRUCTOR DOCUMENTATION
.PP
.SS ACE_Dumpable::ACE_Dumpable (const void *)
.PP
Constructor.
.PP
.SS virtual ACE_Dumpable::~ACE_Dumpable (void)\fC [protected, virtual]\fR
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.PP
.SS void ACE_Dumpable::dump (void) const\fC [pure virtual]\fR
.PP
This pure virtual method must be filled in by a subclass.
.PP
Reimplemented in \fBACE_Dumpable_Adapter\fR.
.SH FRIENDS AND RELATED FUNCTION DOCUMENTATION
.PP
.SS class ACE_Dumpable_Ptr\fC [friend]\fR
.PP
.SS class ACE_ODB\fC [friend]\fR
.PP
.SH MEMBER DATA DOCUMENTATION
.PP
.SS const void * ACE_Dumpable::this_\fC [private]\fR
.PP
Pointer to the object that is being stored.
.PP
Reimplemented in \fBACE_Dumpable_Adapter\fR.
.SH AUTHOR
.PP
Generated automatically by Doxygen for ACE from the source code.
|