-// Future implementation for RTTI that support subtyping. [alan]
-//
-// UClassID UObject::getStaticClassID() {
-// return (UClassID) NULL;
-// }
-//
-// UBool UObject::instanceOf(UClassID type) const {
-// UClassID c = getDynamicClassID();
-// for (;;) {
-// if (c == type) {
-// return TRUE;
-// } else if (c == (UClassID) NULL) {
-// return FALSE;
-// }
-// c = * (UClassID*) c;
-// }
-// }