2
0

func-import.inline.h 349 B

123456789101112131415
  1. #ifndef AFUN_FUNC_IMPORT_INLINE_H
  2. #define AFUN_FUNC_IMPORT_INLINE_H
  3. #include "func-import.h"
  4. namespace aFuncore {
  5. inline ImportFunction::ImportFunction(Inter &inter_) : Object("Function", inter_) {
  6. }
  7. inline ImportFunction::ImportFunction(Environment &env_) : Object("Function", env_) {
  8. }
  9. }
  10. #endif //AFUN_FUNC_IMPORT_INLINE_H