#include <swobject.h>
Inheritance diagram for SWObject:


Public Methods | |
| const SWClass * | getClass () const |
| Use this to get the class definition and inheritance order. More... | |
Protected Attributes | |
| SWClass * | myclass |
SWObject is the base class for major Sword classes like SWKey. 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).
Definition at line 41 of file swobject.h.
|
|
Use this to get the class definition and inheritance order.
Definition at line 49 of file swobject.h.
00049 {
00050 return myclass;
00051 }
|
1.2.15