diff options
-rw-r--r-- | model.cpp | 5 | ||||
-rw-r--r-- | model.h | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -27,6 +27,11 @@ bool FrameObj::is_parse_bracket() { return ftype & CLS_PAR_BRA; } +EvalObj::EvalObj(const EvalObj &src) : +FrameObj(CLS_EVAL_OBJ), otype(src.otype) { + gc_rec = gc.join(this); +} + EvalObj::EvalObj(int _otype) : FrameObj(CLS_EVAL_OBJ), otype(_otype) { /** To notify GC when an EvalObj is constructed */ @@ -72,6 +72,8 @@ class EvalObj : public FrameObj {/*{{{*/ * CLS_SIM_OBJ for a simple object), which defaults to CLS_SIM_OBJ, etc. */ EvalObj(int otype = CLS_SIM_OBJ); + /** The copy constructor */ + EvalObj(const EvalObj &src); /** * The destructor */ |