CACAO
|
Represents a native method. More...
Public Member Functions | |
NativeMethod (Utf8String classname, Utf8String name, Utf8String signature, void *function) | |
NativeMethod (methodinfo *m) | |
void * | get_function () const |
Private Attributes | |
Utf8String | _classname |
Class name. More... | |
Utf8String | _name |
Method name. More... | |
Utf8String | _descriptor |
Method signature. More... | |
void * | _function |
Pointer to the native function. More... | |
Friends | |
bool | operator< (const NativeMethod &first, const NativeMethod &second) |
Represents a native method.
Definition at line 112 of file native.hpp.
|
inline |
Definition at line 122 of file native.hpp.
|
inline |
Definition at line 123 of file native.hpp.
|
inline |
Definition at line 125 of file native.hpp.
|
friend |
Definition at line 212 of file native.cpp.
|
private |
Class name.
Definition at line 114 of file native.hpp.
|
private |
Method signature.
Definition at line 116 of file native.hpp.
|
private |
Pointer to the native function.
Definition at line 117 of file native.hpp.
|
private |
Method name.
Definition at line 115 of file native.hpp.