value.inline.h 640 B

123456789101112131415161718192021222324252627
  1. #ifndef AFUN_VALUE_INLINE_H
  2. #define AFUN_VALUE_INLINE_H
  3. #include "value.h"
  4. namespace aFuncore {
  5. inline Function::Function(const std::string &type_, Inter *inter_) : Object(type_ + ":Function", inter_) {
  6. }
  7. inline bool Function::isInfix() {
  8. return false;
  9. }
  10. inline Literaler::Literaler(const std::string &type_, Inter *inter_) : Object(type_ + ":Literaler", inter_) {
  11. }
  12. inline CallBackVar::CallBackVar(const std::string &type_, Inter *inter_) : Object(type_ + ":CallBackVar", inter_) {
  13. }
  14. inline bool CallBackVar::isCallBack() {
  15. return true;
  16. }
  17. };
  18. #endif //AFUN_VALUE_INLINE_H