bbobject.cpp 268 B

1234567891011121314151617181920
  1. #include "bbobject.h"
  2. #include "bbdebug.h"
  3. #include "bbarray.h"
  4. bbNullCtor_t bbNullCtor;
  5. // ***** bbObject *****
  6. bbObject::~bbObject(){
  7. }
  8. const char *bbObject::typeName()const{
  9. return "monkey.Object";
  10. }
  11. // ***** bbInterface *****
  12. bbInterface::~bbInterface(){
  13. }