| 1 | #ifndef wren_opt_meta_h |
|---|---|
| 2 | #define wren_opt_meta_h |
| 3 | |
| 4 | #include "wren_common.h" |
| 5 | #include "wren.h" |
| 6 | |
| 7 | // This module defines the Meta class and its associated methods. |
| 8 | #if WREN_OPT_META |
| 9 | |
| 10 | const char* wrenMetaSource(); |
| 11 | WrenForeignMethodFn wrenMetaBindForeignMethod(WrenVM* vm, |
| 12 | const char* className, |
| 13 | bool isStatic, |
| 14 | const char* signature); |
| 15 | |
| 16 | #endif |
| 17 | |
| 18 | #endif |
| 19 |