1234567891011121314151617181920 |
- #include "bbobject.h"
- #include "bbdebug.h"
- #include "bbarray.h"
- bbNullCtor_t bbNullCtor;
- // ***** bbObject *****
- bbObject::~bbObject(){
- }
- const char *bbObject::typeName()const{
- return "monkey.Object";
- }
- // ***** bbInterface *****
- bbInterface::~bbInterface(){
- }
|