123456789101112131415 |
- #ifndef AFUN_FUNC_IMPORT_INLINE_H
- #define AFUN_FUNC_IMPORT_INLINE_H
- #include "func-import.h"
- namespace aFuncore {
- inline ImportFunction::ImportFunction(Inter &inter_) : Object("Function", inter_) {
- }
- inline ImportFunction::ImportFunction(Environment &env_) : Object("Function", env_) {
- }
- }
- #endif //AFUN_FUNC_IMPORT_INLINE_H
|