2.0
3.0
>
dev
>
api
>
name
>
begin_method_void
Anterior
Próximo
Editar
Renomear
Desfazer
Procurar
Administração
Documentação
Cuidado! Esta página não está traduziada.
Veja a versão em inglês
BEGIN_METHOD_VOID
#define
BEGIN_METHOD_VOID
(
name
) ...
Begins the implementation of a
method
that has no arguments.
name
is the name of the function, as specified in the
class
declaration.
Exemplo
BEGIN_METHOD_VOID(CARRAY_pop)
...
END_METHOD
...
PUBLIC GB_DESC NATIVE_StringArray[] =
{
GB_DECLARE("String[]", sizeof(CARRAY)), GB_INHERITS(".Array"),
...
GB_METHOD("Pop", "s", CARRAY_pop, NULL),
...
GB_END_DECLARE
};
Veja também
Methods Implementation