value.cpp 254 B

12345678910
  1. #include "value.h"
  2. #include "inter.h"
  3. using namespace aFuncore;
  4. using namespace aFuntool;
  5. aFuncore::Object::Object(const std::string &type_, Inter &inter_)
  6. : type{type_}, inter{inter_.base} {
  7. this->addObject(inter.getGcRecord()->obj);
  8. }