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
|
.TH "SWObject" 3 "5 Oct 2001" "The Sword Project" \" -*- nroff -*-
.ad l
.nh
.SH NAME
SWObject \- Base class for major Sword classes.
.SH SYNOPSIS
.br
.PP
\fC#include <swobject.h>\fR
.PP
Inherited by \fBSWKey\fR.
.PP
.SS Public Methods
.in +1c
.ti -1c
.RI "const \fBSWClass\fR* \fBgetClass\fR () const"
.br
.RI "\fIUse this to get the class definition and inheritance order.\fR"
.in -1c
.SS Protected Attributes
.in +1c
.ti -1c
.RI "\fBSWClass\fR* \fBmyclass\fR"
.br
.in -1c
.SH DETAILED DESCRIPTION
.PP
Base class for major Sword classes.
.PP
SWObject is the base class for major Sword classes like \fBSWKey\fR. It is used because dynamic_cast is not available on all plattforms supported by Sword. Use SWDYNAMIC_CAST(classname, object) instead of dynamic_cast<classname>(object).
.PP
Definition at line 41 of file swobject.h.
.SH MEMBER FUNCTION DOCUMENTATION
.PP
.SS const \fBSWClass\fR * SWObject::getClass () const\fC [inline]\fR
.PP
Use this to get the class definition and inheritance order.
.PP
\fBReturns: \fR
.in +1c
The class definition of this object
.PP
Definition at line 49 of file swobject.h.
.SH AUTHOR
.PP
Generated automatically by Doxygen for The Sword Project from the source code.
|