interface
| 246 | |
| 247 | // interface |
| 248 | asIScriptFunction *asCObjectType::GetFactoryByDecl(const char *decl) const |
| 249 | { |
| 250 | if( beh.factories.GetLength() == 0 ) |
| 251 | return 0; |
| 252 | |
| 253 | // Let the engine parse the string and find the appropriate factory function |
| 254 | return engine->GetFunctionById(engine->GetFactoryIdByDecl(this, decl)); |
| 255 | } |
| 256 | |
| 257 | // interface |
| 258 | asUINT asCObjectType::GetMethodCount() const |